[cfe-commits] r107874 - /cfe/trunk/test/CXX/except/except.spec/p14-ir.cpp
John McCall
rjmccall at apple.com
Thu Jul 8 06:17:29 PDT 2010
Author: rjmccall
Date: Thu Jul 8 08:17:29 2010
New Revision: 107874
URL: http://llvm.org/viewvc/llvm-project?rev=107874&view=rev
Log:
Apparently the {{$}} hack doesn't work on Windows; I am saddened but not
surprised.
Modified:
cfe/trunk/test/CXX/except/except.spec/p14-ir.cpp
Modified: cfe/trunk/test/CXX/except/except.spec/p14-ir.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CXX/except/except.spec/p14-ir.cpp?rev=107874&r1=107873&r2=107874&view=diff
==============================================================================
--- cfe/trunk/test/CXX/except/except.spec/p14-ir.cpp (original)
+++ cfe/trunk/test/CXX/except/except.spec/p14-ir.cpp Thu Jul 8 08:17:29 2010
@@ -59,14 +59,17 @@
// 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
More information about the cfe-commits
mailing list