diff options
| author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-08-17 12:28:26 +0000 |
|---|---|---|
| committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-08-17 12:28:26 +0000 |
| commit | 2f47a3fb0700fe016673dc023a7d567bacae37e2 (patch) | |
| tree | 18b1e701716c0c21e1ea12b0cc746c0b5e6d437d /llvm/test/CodeGen/Generic | |
| parent | e0b3f44ffcfe6273da2b93800c9290cd6ba7e1eb (diff) | |
| download | bcm5719-llvm-2f47a3fb0700fe016673dc023a7d567bacae37e2.tar.gz bcm5719-llvm-2f47a3fb0700fe016673dc023a7d567bacae37e2.zip | |
Fix broken check lines.
I really need to find a way to automate this, but I can't come up with a regex
that has no false positives while handling tricky cases like custom check
prefixes.
llvm-svn: 162097
Diffstat (limited to 'llvm/test/CodeGen/Generic')
| -rw-r--r-- | llvm/test/CodeGen/Generic/donothing.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/Generic/donothing.ll b/llvm/test/CodeGen/Generic/donothing.ll index d6ba138fc6d..3727b60a1a4 100644 --- a/llvm/test/CodeGen/Generic/donothing.ll +++ b/llvm/test/CodeGen/Generic/donothing.ll @@ -7,7 +7,7 @@ declare void @llvm.donothing() readnone ; CHECK: f1 define void @f1() nounwind uwtable ssp { entry: -; CHECK-NOT donothing +; CHECK-NOT: donothing invoke void @llvm.donothing() to label %invoke.cont unwind label %lpad @@ -25,7 +25,7 @@ lpad: ; CHECK: f2 define void @f2() nounwind { entry: -; CHECK-NOT donothing +; CHECK-NOT: donothing call void @llvm.donothing() ret void } |

