diff options
author | Duncan Sands <baldrick@free.fr> | 2007-06-07 09:00:48 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2007-06-07 09:00:48 +0000 |
commit | 140a2605afa8d1863af74625c2c62198f68b30ac (patch) | |
tree | 35ad72cc635d6b5acc3c639b53ef63d2391851f3 | |
parent | f476961ae6839496b715339cc9c2e28d5c1afbf5 (diff) |
Make this test pass if llvm-g++ was built without exception handling support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37488 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/C++Frontend/2007-05-23-TryFinally.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/C++Frontend/2007-05-23-TryFinally.cpp b/test/C++Frontend/2007-05-23-TryFinally.cpp index 5ae40d79b4..021d528a0c 100644 --- a/test/C++Frontend/2007-05-23-TryFinally.cpp +++ b/test/C++Frontend/2007-05-23-TryFinally.cpp @@ -1,4 +1,4 @@ -// RUN: %llvmgxx %s -S -emit-llvm -O2 -o - | grep _Unwind_Resume | wc -l | grep {\[03\]} +// RUN: %llvmgxx %s -S -emit-llvm -O2 -o - | grep -c {handle\\|_Unwind_Resume} | grep {\[14\]} struct One { }; struct Two { }; |