OSDN Git Service

* gcc.target/i386/reload-1.c. Include <stdint.h>. Compile for all
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 25 Apr 2007 11:55:38 +0000 (11:55 +0000)
committeruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 25 Apr 2007 11:55:38 +0000 (11:55 +0000)
ilp32 i?86-*-* and x86_64-*-* targets.  Do not skip test for -m64.
Use scan-rtl-dump-not procedure to scan RTL dump.  Cleanup csa dump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@124152 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/reload-1.c

index 0722463..a3a7c1d 100644 (file)
@@ -1,3 +1,9 @@
+2007-04-25  Uros Bizjak  <ubizjak@gmail.com>
+
+       * gcc.target/i386/reload-1.c. Include <stdint.h>.  Compile for all
+       ilp32 i?86-*-* and x86_64-*-* targets.  Do not skip test for -m64.
+       Use scan-rtl-dump-not procedure to scan RTL dump.  Cleanup csa dump.
+
 2007-04-25  Tobias Burnus  <burnus@net-b.de>
 
        PR fortran/31668
index 7fcb5b4..1fe0be2 100644 (file)
@@ -1,8 +1,9 @@
-/* { dg-do compile { target i?86-*-* } } */
+/* { dg-do compile { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */
 /* { dg-options "-O3 -msse2 -fdump-rtl-csa" } */
-/* { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } */
-/* { dg-final { scan-file-not reload-1.c.167r.csa "deleted 1 dead insns" } }*/
+
 #include <emmintrin.h>
+#include <stdint.h>
+
 typedef __SIZE_TYPE__ size_t;
 typedef float vFloat __attribute__ ((__vector_size__ (16)));
 typedef double vDouble __attribute__ ((__vector_size__ (16)));
@@ -107,3 +108,6 @@ long foo (job *j )
   fj *jd = (fj*) j;
   return bar (&jd->src, &jd->dest, jd->g, jd->flags);
 }
+
+/* { dg-final { scan-rtl-dump-not "deleted 1 dead insns" "csa" } } */
+/* { dg-final { cleanup-rtl-dump "csa" } } */