aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Generic
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-08-17 12:28:26 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-08-17 12:28:26 +0000
commit4e81d40545b01e0ce486b4de72282e66b91f48e9 (patch)
tree02c5bef9ffc654207ba2cc259d4d942776d49793 /test/CodeGen/Generic
parent3c8ad92455ff06c8e69085702ef1f13944eab4dd (diff)
downloadexternal_llvm-4e81d40545b01e0ce486b4de72282e66b91f48e9.zip
external_llvm-4e81d40545b01e0ce486b4de72282e66b91f48e9.tar.gz
external_llvm-4e81d40545b01e0ce486b4de72282e66b91f48e9.tar.bz2
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162097 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Generic')
-rw-r--r--test/CodeGen/Generic/donothing.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/Generic/donothing.ll b/test/CodeGen/Generic/donothing.ll
index d6ba138..3727b60 100644
--- a/test/CodeGen/Generic/donothing.ll
+++ b/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
}