aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>2005-04-22 18:48:47 -0600
committerJeff Law <law@gcc.gnu.org>2005-04-22 18:48:47 -0600
commitbe240c882fab19b69247c4d9a252873fd7ebc59c (patch)
tree4d07b8b33e73a589d328707d272a8f922757fe1f /gcc
parent74d2efc74c9a5e8ee49777a97ea02c1dcdc0fb17 (diff)
downloadgcc-be240c882fab19b69247c4d9a252873fd7ebc59c.zip
gcc-be240c882fab19b69247c4d9a252873fd7ebc59c.tar.gz
gcc-be240c882fab19b69247c4d9a252873fd7ebc59c.tar.bz2
uninit-5.c: Remove xfails.
* gcc.dg/uninit-5.c: Remove xfails. * gcc.dg/tree-ssa/20030711-1.c:Reduce the number of conditionals and loads. From-SVN: r98598
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog8
-rw-r--r--gcc/testsuite/gcc.dg/tree-ssa/20030711-1.c4
-rw-r--r--gcc/testsuite/gcc.dg/uninit-5.c4
3 files changed, 11 insertions, 5 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index f446da7..95b879a 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/20030711-1.c b/gcc/testsuite/gcc.dg/tree-ssa/20030711-1.c
index 13b919f..20a660c 100644
--- a/gcc/testsuite/gcc.dg/tree-ssa/20030711-1.c
+++ b/gcc/testsuite/gcc.dg/tree-ssa/20030711-1.c
@@ -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" } } */
diff --git a/gcc/testsuite/gcc.dg/uninit-5.c b/gcc/testsuite/gcc.dg/uninit-5.c
index 21ac9ee..ae7a8de 100644
--- a/gcc/testsuite/gcc.dg/uninit-5.c
+++ b/gcc/testsuite/gcc.dg/uninit-5.c
@@ -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)