From: H.J. Lu Date: Tue, 30 Oct 2012 21:39:05 +0000 (+0000) Subject: Rename pr55116.c to pr55116-1.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=478b77b9fa3318f13411b707cd772472c8013736;p=gcc.git Rename pr55116.c to pr55116-1.c * gcc.target/i386/pr55116.c: Renamed to ... * gcc.target/i386/pr55116-1.c: This. From-SVN: r192997 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 06f95f5160a..b6dd6fc85c5 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2012-10-30 H.J. Lu + + * gcc.target/i386/pr55116.c: Renamed to ... + * gcc.target/i386/pr55116-1.c: This. + 2012-10-30 H.J. Lu * gcc.target/i386/pr55116-2.c: New file. diff --git a/gcc/testsuite/gcc.target/i386/pr55116-1.c b/gcc/testsuite/gcc.target/i386/pr55116-1.c new file mode 100644 index 00000000000..de272445aa2 --- /dev/null +++ b/gcc/testsuite/gcc.target/i386/pr55116-1.c @@ -0,0 +1,11 @@ +/* { dg-do compile { target { ! { ia32 } } } } */ +/* { dg-options "-O2 -mx32 -maddress-mode=long" } */ + +int glob_int_arr[100]; +int glob_int = 4; + +void +expr_global (void) +{ + __builtin_prefetch (glob_int_arr + glob_int, 0, 0); +} diff --git a/gcc/testsuite/gcc.target/i386/pr55116.c b/gcc/testsuite/gcc.target/i386/pr55116.c deleted file mode 100644 index de272445aa2..00000000000 --- a/gcc/testsuite/gcc.target/i386/pr55116.c +++ /dev/null @@ -1,11 +0,0 @@ -/* { dg-do compile { target { ! { ia32 } } } } */ -/* { dg-options "-O2 -mx32 -maddress-mode=long" } */ - -int glob_int_arr[100]; -int glob_int = 4; - -void -expr_global (void) -{ - __builtin_prefetch (glob_int_arr + glob_int, 0, 0); -}