diff options
author | John McCall <rjmccall@apple.com> | 2010-07-08 13:17:29 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-07-08 13:17:29 +0000 |
commit | 39dbad9b67cd9e36b9cd3b48a16caf7e4461211e (patch) | |
tree | 5826e0813efcdddef6c7e1a7192378a679853b42 | |
parent | be191100e034b23a3e13053757a57b7f5068c24a (diff) |
Apparently the {{$}} hack doesn't work on Windows; I am saddened but not
surprised.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107874 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CXX/except/except.spec/p14-ir.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/CXX/except/except.spec/p14-ir.cpp b/test/CXX/except/except.spec/p14-ir.cpp index 79d6f28479..4d8d1f7c40 100644 --- a/test/CXX/except/except.spec/p14-ir.cpp +++ b/test/CXX/except/except.spec/p14-ir.cpp @@ -59,14 +59,17 @@ void test() { // CHECK: call void @_ZN2X8C2Ev({{.*}}) nounwind // CHECK-NEXT: ret void X8(); + // CHECK: define linkonce_odr void @_ZN2X9C1Ev - // CHECK: call void @_ZN2X9C2Ev({{.*}}){{$}} + // FIXME: check that this is the end of the line here: + // CHECK: call void @_ZN2X9C2Ev({{.*}}) // CHECK-NEXT: ret void X9(); // CHECK: define linkonce_odr void @_ZN2X9C2Ev // CHECK: call void @_ZN2X6C2Ev({{.*}}) nounwind - // CHECK-NEXT: call void @_ZN2X7C2Ev({{.*}}){{$}} + // FIXME: and here: + // CHECK-NEXT: call void @_ZN2X7C2Ev({{.*}}) // CHECK: ret void // CHECK: define linkonce_odr void @_ZN2X8C2Ev |