summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanjoy Das <sanjoy@playingwithpointers.com>2015-12-19 22:40:22 +0000
committerSanjoy Das <sanjoy@playingwithpointers.com>2015-12-19 22:40:22 +0000
commit269b8a6713b2bf8feac57f3b34456153b483f3c8 (patch)
tree5a11650cd19fc29145453fe719900271b31c490a
parentf2adc7995e20d8e70e7bb1da1cdf4fc1ef0af22d (diff)
[Deopt bundles] Fix a test case
The `CHECK-NOT` line was incorrect, and would not have caught a breakage. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256109 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Transforms/Inline/deopt-bundles.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/Inline/deopt-bundles.ll b/test/Transforms/Inline/deopt-bundles.ll
index 75e8d55acdb..1acbb2f0585 100644
--- a/test/Transforms/Inline/deopt-bundles.ll
+++ b/test/Transforms/Inline/deopt-bundles.ll
@@ -156,7 +156,7 @@ define i32 @callee_7(i1 %val) alwaysinline personality i8 3 {
define i32 @caller_7() {
; CHECK-LABEL: @caller_7(
entry:
-; CHECK-NOT: call fastcc i32 @g.fastcc() #[[FOO_BAR_ATTR_IDX]] [ "deopt"(i32 7, i32 0, i32 1), "foo"(double 0.000000e+00) ]
+; CHECK-NOT: call fastcc i32 @g.fastcc()
; CHECK: ret i32 0
%x = call i32 @callee_7(i1 true) [ "deopt"(i32 7) ]
ret i32 %x