uninit-5.c: Remove xfails.
authorJeff Law <law@gcc.gnu.org>
Sat, 23 Apr 2005 00:48:47 +0000 (18:48 -0600)
committerJeff Law <law@gcc.gnu.org>
Sat, 23 Apr 2005 00:48:47 +0000 (18:48 -0600)
        * gcc.dg/uninit-5.c: Remove xfails.
        * gcc.dg/tree-ssa/20030711-1.c:Reduce the number of
        conditionals and loads.

From-SVN: r98598

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/tree-ssa/20030711-1.c
gcc/testsuite/gcc.dg/uninit-5.c

index f446da7e3277cdfb5ef000edb503b213fed75e9a..95b879ae8f8476c288444150be839647eb5a289a 100644 (file)
@@ -1,4 +1,10 @@
-205-04-22  Thomas Koenig  <Thomas.Koenig@online.de>
+2005-04-22  Jeff Law  <law@redhat.com>
+
+       * gcc.dg/uninit-5.c: Remove xfails.
+       * gcc.dg/tree-ssa/20030711-1.c:Reduce the number of
+       conditionals and loads.
+
+2005-04-22  Thomas Koenig  <Thomas.Koenig@online.de>
 
        PR libfortran/20074
        PR libfortran/20436
index 13b919f5cbff31c4f34f1c0e17a4455bba291326..20a660c59fb961d4ac4831c178c5683e6368d98e 100644 (file)
@@ -44,12 +44,12 @@ record_component_aliases (type)
 /* { dg-final { scan-tree-dump-times "blah \\(\\)" 1 "dom3" } } */
    
 /* There should be four IF conditionals.  */
-/* { dg-final { scan-tree-dump-times "if " 4 "dom3"} } */
+/* { dg-final { scan-tree-dump-times "if " 3 "dom3"} } */
                                                                                 
 /* There should be two loads of type.binfo.  */
 /* { dg-final { scan-tree-dump-times "type\\.binfo" 2 "dom3"} } */
  
 /* There should be four loads of vec.length.  */
-/* { dg-final { scan-tree-dump-times "vec.length" 4 "dom3"} } */
+/* { dg-final { scan-tree-dump-times "vec.length" 3 "dom3"} } */
 
 /* { dg-final { cleanup-tree-dump "dom3" } } */
index 21ac9eec6f8ba3721e3b4d61b28540bd47d83e5b..ae7a8de7646802cd2c20e46c8af5d828908fe131 100644 (file)
@@ -9,7 +9,7 @@ extern void foo(void);
 void
 func1(int cond)
 {
-    int x;  /* { dg-bogus "x" "uninitialized variable warning" { xfail *-*-* } } */
+    int x;  /* { dg-bogus "x" "uninitialized variable warning" } */
 
     if(cond)
        x = 1;
@@ -23,7 +23,7 @@ func1(int cond)
 void
 func2 (int cond)
 {
-    int x;  /* { dg-bogus "x" "uninitialized variable warning" { xfail *-*-* } } */
+    int x;  /* { dg-bogus "x" "uninitialized variable warning" } */
     int flag = 0;
 
     if(cond)