Commit 9858e0cc by Jie Zhang Committed by Jie Zhang

l2.c: New test.

	* gcc.target/bfin/l2.c: New test.
	* gcc.target/bfin/bfin.exp (dg-bfin-processors): New.

From-SVN: r155860
parent 48f30f62
2010-01-13 Jie Zhang <jie.zhang@analog.com>
* gcc.target/bfin/l2.c: New test.
* gcc.target/bfin/bfin.exp (dg-bfin-processors): New.
2010-01-13 Richard Guenther <rguenther@suse.de>
PR middle-end/42716
......
# Copyright (C) 2007 Free Software Foundation, Inc.
# Copyright (C) 2007, 2010 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
......@@ -53,6 +53,30 @@ proc dg-bfin-options {args} {
}
}
# dg-bfin-processors can be used to specify the processors which can
# run the test case.
proc dg-bfin-processors {args} {
upvar dg-extra-tool-flags extra_tool_flags
upvar dg-do-what do_what
set multilib_cpu ""
set cpu ""
foreach flag [target_info multilib_flags] {
regexp "^-mcpu=([^-]*)" $flag dummy multilib_cpu
}
set cpus [lindex $args 1]
foreach cpu $cpus {
if {$multilib_cpu == $cpu} {
return
}
}
set do_what [list [lindex $do_what 0] "N" "P"]
}
# Initialize `dg'.
dg-init
......
/* { dg-do run { target bfin-*-linux-uclibc } } */
/* { dg-bfin-processors bf544 bf547 bf548 bf549 bf561} */
#if defined(__ADSPBF544__)
#define L2_START 0xFEB00000
#define L2_LENGTH 0x10000
#else
#define L2_START 0xFEB00000
#define L2_LENGTH 0x20000
#endif
int n __attribute__ ((l2));
int foo (int i) __attribute__ ((l2));
int foo (int a)
{
return a + 1;
}
int main ()
{
int r;
unsigned long *p;
p = (unsigned long *) foo;
if (*p < L2_START || *p >= L2_START + L2_LENGTH)
return 1;
p = (unsigned long *) &n;
if ((unsigned long) p < L2_START || (unsigned long) p >= L2_START + L2_LENGTH)
return 2;
if (foo (0) != 1)
return 3;
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment