diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-02-11 20:33:22 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-02-11 20:33:22 +0000 |
commit | 346f1e97a9a9166f815b4a3ca2cce2220a9eb162 (patch) | |
tree | a2e59833e89334caaa20b2fbc201ffbe9071c289 /clang/test/CodeGenCXX/debug-info-inheriting-constructor.cpp | |
parent | 22c21934cefc83a8f911728eea24ebe79df49af1 (diff) | |
download | bcm5719-llvm-346f1e97a9a9166f815b4a3ca2cce2220a9eb162.tar.gz bcm5719-llvm-346f1e97a9a9166f815b4a3ca2cce2220a9eb162.zip |
Fix a few tests that were missing ':' on CHECK lines and weren't testing anything.
Found by `git grep '\/\/ CHECK-[^: ]* ' clang/test/ | grep -v RUN:`.
Also tweak CodeGenCXX/arm-swiftcall.cpp to still pass now that it checks more.
Differential Revision: https://reviews.llvm.org/D58061
llvm-svn: 353744
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-inheriting-constructor.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-inheriting-constructor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-inheriting-constructor.cpp b/clang/test/CodeGenCXX/debug-info-inheriting-constructor.cpp index 8e47a0da6df..3a260507822 100644 --- a/clang/test/CodeGenCXX/debug-info-inheriting-constructor.cpp +++ b/clang/test/CodeGenCXX/debug-info-inheriting-constructor.cpp @@ -9,9 +9,9 @@ struct B : A { A::A(int i, ...) {} // CHECK: define void @{{.*}}foo -// CHECK-NOT ret void +// CHECK-NOT: ret void // CHECK: call void @llvm.dbg.declare -// CHECK-NOT ret void +// CHECK-NOT: ret void // CHECK: call void @llvm.dbg.declare(metadata %{{.*}}** %{{[^,]+}}, // CHECK-SAME: metadata ![[THIS:[0-9]+]], metadata !DIExpression()), !dbg ![[LOC:[0-9]+]] // CHECK: ret void, !dbg ![[NOINL:[0-9]+]] |