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 | 3f35c524b96aeceb95b066e9042c62cdd5aa760c (patch) | |
tree | 89ec16d7be526ec9293de92f21c67ef3a96c0687 /llvm/test/C++Frontend | |
parent | d3f3f0adad0d3616ff0d6626a2f9f300cb81636b (diff) | |
download | bcm5719-llvm-3f35c524b96aeceb95b066e9042c62cdd5aa760c.tar.gz bcm5719-llvm-3f35c524b96aeceb95b066e9042c62cdd5aa760c.zip |
Make this test pass if llvm-g++ was built without exception handling support.
llvm-svn: 37488
Diffstat (limited to 'llvm/test/C++Frontend')
-rw-r--r-- | llvm/test/C++Frontend/2007-05-23-TryFinally.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/C++Frontend/2007-05-23-TryFinally.cpp b/llvm/test/C++Frontend/2007-05-23-TryFinally.cpp index 5ae40d79b4f..021d528a0ce 100644 --- a/llvm/test/C++Frontend/2007-05-23-TryFinally.cpp +++ b/llvm/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 { }; |