diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-05-15 17:28:53 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-05-15 17:28:53 +0000 |
commit | 72bf425fab902f5fd6114b630b8dc3dc0e1de1a8 (patch) | |
tree | ef625cf79ad43b96ee39e2eb4ffe56f56d012c74 | |
parent | c00c1f6638a8ca771df14133560873fc21f31234 (diff) |
Attempt to satisfy Release-Asserts build
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@103879 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/nrvo.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/CodeGenCXX/nrvo.cpp b/test/CodeGenCXX/nrvo.cpp index 92b4103602..195b2b81fa 100644 --- a/test/CodeGenCXX/nrvo.cpp +++ b/test/CodeGenCXX/nrvo.cpp @@ -17,7 +17,6 @@ X test0() { // CHECK: ret void // CHECK-EH: ret void return x; - // CHECK-EH: ehcleanup: // CHECK-EH: invoke void @_ZN1XD1Ev } @@ -30,7 +29,6 @@ X test1(bool B) { if (B) return (x); return x; - // CHECK-EH: ehcleanup: // CHECK-EH: invoke void @_ZN1XD1Ev } @@ -52,7 +50,6 @@ X test2(bool B) { // CHECK: call void @_ZN1XD1Ev // CHECK: call void @_ZN1XD1Ev // CHECK: ret void - // CHECK-EH: ehcleanup: // CHECK-EH: invoke void @_ZN1XD1Ev // CHECK-EH: invoke void @_ZN1XD1Ev } |