]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Warray-bounds.c: Remove XFAILs.
authorRichard Guenther <rguenther@suse.de>
Sun, 3 Jan 2010 22:39:47 +0000 (22:39 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Sun, 3 Jan 2010 22:39:47 +0000 (22:39 +0000)
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.

From-SVN: r155595

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 bbf96380f706c09cb9cb8d245dd3f1de1ffd8cba..ac84c6028760632bed842a2a6ac070df46e6fd9c 100644 (file)
@@ -1,3 +1,9 @@
+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
index 44120392c73b79b4eb28409cf853874ca27c5113..aa154a7e79d0edf8a1b8d1976046d02728a02246 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 303afb72b36cd51ece03b658c76e003534febaaf..abf50a54fec6328c91981403a7fd42e324ec5589 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 b0f2083ab4b8676e128c6f85a7ecfd4b8d0ae779..009e124fccf8972f22ba720224f7400f22f85c89 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);