OSDN Git Service

2010-01-03 Richard Guenther <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 3 Jan 2010 22:39:47 +0000 (22:39 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 3 Jan 2010 22:39:47 +0000 (22:39 +0000)
* gcc.dg/Warray-bounds.c: Remove XFAILs.
* gcc.dg/uninit-6.c: Likewise.
* gcc.dg/struct/wo_prof_array_through_pointer.c: Likewise.

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

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/Warray-bounds.c
gcc/testsuite/gcc.dg/struct/wo_prof_array_through_pointer.c
gcc/testsuite/gcc.dg/uninit-6.c

index bbf9638..ac84c60 100644 (file)
@@ -1,5 +1,11 @@
 2010-01-03  Richard Guenther  <rguenther@suse.de>
 
+       * gcc.dg/Warray-bounds.c: Remove XFAILs.
+       * gcc.dg/uninit-6.c: Likewise.
+       * gcc.dg/struct/wo_prof_array_through_pointer.c: Likewise.
+
+2010-01-03  Richard Guenther  <rguenther@suse.de>
+
        PR tree-optimization/42589
        * gcc.target/i386/pr42589.c: New testcase.
 
index 4412039..aa154a7 100644 (file)
@@ -56,13 +56,13 @@ int* f(void) {
     g(&a[8]);
     g(&a[9]);
     g(&a[10]);
-    g(&a[11]);             /* { dg-warning "array subscript" "" { xfail *-*-* } } */
+    g(&a[11]);             /* { dg-warning "array subscript" } */
     g(&a[-30]+10);             /* { dg-warning "array subscript" } */
     g(&a[-30]+30);
 
     g(&b[10]);
     g(&c.c[10]);
-    g(&b[11]);             /* { dg-warning "array subscript" "" { xfail *-*-* } } */
+    g(&b[11]);             /* { dg-warning "array subscript" } */
     g(&c.c[11]);           /* { dg-warning "array subscript" } */
 
     g(&a[0]);
index 303afb7..abf50a5 100644 (file)
@@ -35,7 +35,5 @@ main ()
   return 0;
 }
 
-/*--------------------------------------------------------------------------*/
-/* Currently str_t escapes due to incorrect ipa-type-escape analysis.  */
-/* { dg-final { scan-ipa-dump "Number of structures to transform is 1" "ipa_struct_reorg" { xfail *-*-* } } } */
+/* { dg-final { scan-ipa-dump "Number of structures to transform is 1" "ipa_struct_reorg" } } */
 /* { dg-final { cleanup-ipa-dump "*" } } */
index b0f2083..009e124 100644 (file)
@@ -39,7 +39,7 @@ make_something(int a, int b, int c)
     rv = malloc (sizeof (struct tree));
     rv->car = 0;
 
-    APPEND(rv, field, INTEGER_T, a);  /* { dg-bogus "field" "uninitialized variable warning" { xfail *-*-* } } */
+    APPEND(rv, field, INTEGER_T, a);  /* { dg-bogus "field" "uninitialized variable warning" } */
     APPEND(rv, field, PTR_T, b);
     APPEND(rv, field, INTEGER_T, c);