diff options
author | Jason Merrill <jason@gcc.gnu.org> | 1998-10-22 22:21:02 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 1998-10-22 22:21:02 -0400 |
commit | 8d3f83d25c6c9a51b28469352e77e5bb969486d8 (patch) | |
tree | 9f120a6f7d79a3769919d877e58a7da51b97d00c | |
parent | fdc46fbe659f77dbcf016a5afb8d08652801c52b (diff) | |
download | gcc-8d3f83d25c6c9a51b28469352e77e5bb969486d8.zip gcc-8d3f83d25c6c9a51b28469352e77e5bb969486d8.tar.gz gcc-8d3f83d25c6c9a51b28469352e77e5bb969486d8.tar.bz2 |
up
From-SVN: r23242
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/badopt1.C | 2 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/conv3.C | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/badopt1.C b/gcc/testsuite/g++.old-deja/g++.other/badopt1.C index ea8b684..096770e 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/badopt1.C +++ b/gcc/testsuite/g++.old-deja/g++.other/badopt1.C @@ -1,8 +1,6 @@ // Based on a testcase by Bryan Weston <bryanw@bluemoon.sps.mot.com> // egcs 1.1 fails to increment count -// execution test - XFAIL *-*-* - #include <cstdlib> struct Base { Base() {} }; // removing the constructor fixes the problem diff --git a/gcc/testsuite/g++.old-deja/g++.other/conv3.C b/gcc/testsuite/g++.old-deja/g++.other/conv3.C index 652f352..7690f56 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/conv3.C +++ b/gcc/testsuite/g++.old-deja/g++.other/conv3.C @@ -9,5 +9,5 @@ aci var = { 2, 3, 5, 7, 11, 13 }; void f() { - int * ip = var; // ERROR - requires const_cast - XFAIL *-*-* + int * ip = var; // ERROR - requires const_cast } |