diff options
author | Chris Lattner <sabre@nondot.org> | 2011-02-09 16:40:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-02-09 16:40:56 +0000 |
commit | 7f4b42eee9efec4a224d98d92e70231cb31cbf5d (patch) | |
tree | 40e15a3eed959fb7a95b5d258632e302100e1e58 /llvm/test/FrontendC++/2003-08-24-Cleanup.cpp | |
parent | b36195ab267cde24f6f241e38a99ed9c2351ffe6 (diff) | |
download | bcm5719-llvm-7f4b42eee9efec4a224d98d92e70231cb31cbf5d.tar.gz bcm5719-llvm-7f4b42eee9efec4a224d98d92e70231cb31cbf5d.zip |
remove a broken test, this is matching nounwind on intrinsics, not the old unwind instruction
llvm-svn: 125188
Diffstat (limited to 'llvm/test/FrontendC++/2003-08-24-Cleanup.cpp')
-rw-r--r-- | llvm/test/FrontendC++/2003-08-24-Cleanup.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/test/FrontendC++/2003-08-24-Cleanup.cpp b/llvm/test/FrontendC++/2003-08-24-Cleanup.cpp deleted file mode 100644 index 9f20ad6b714..00000000000 --- a/llvm/test/FrontendC++/2003-08-24-Cleanup.cpp +++ /dev/null @@ -1,10 +0,0 @@ -// RUN: %llvmgxx -xc++ %s -S -o - | grep unwind - -struct S { ~S(); }; - -int mightthrow(); - -int test() { - S s; - mightthrow(); -} |