aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJason Merrill <jason@gcc.gnu.org>1998-11-13 15:10:12 -0500
committerJason Merrill <jason@gcc.gnu.org>1998-11-13 15:10:12 -0500
commit06ca201039ee55c927cc99f9d2057544cb8630af (patch)
tree0b107689af5f5f00c77039d5f9890c344de0a4d3 /gcc
parent46d18cc681ef683ff15b2e0060a8e3ce2f6c6f2c (diff)
downloadgcc-06ca201039ee55c927cc99f9d2057544cb8630af.zip
gcc-06ca201039ee55c927cc99f9d2057544cb8630af.tar.gz
gcc-06ca201039ee55c927cc99f9d2057544cb8630af.tar.bz2
bad test
From-SVN: r23647
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.eh/sjlj1.C11
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.eh/sjlj1.C b/gcc/testsuite/g++.old-deja/g++.eh/sjlj1.C
deleted file mode 100644
index bf612e2..0000000
--- a/gcc/testsuite/g++.old-deja/g++.eh/sjlj1.C
+++ /dev/null
@@ -1,11 +0,0 @@
-// Special g++ Options: -fsjlj-exceptions
-
-// execution test - XFAIL *-*-*
-
-void foo() throw(int) { throw 1; }
-
-int main() {
- try { foo(); }
- catch(int) { return 0; }
- abort();
-}