This commit is a 4x squash commit consisting of 4x functions converted to use FileChe...
[oota-llvm.git] / test / Transforms / TailCallElim / return_constant.ll
index 48e5641bb57a3d99a667ce70ffb5326fc724b219..e99e57e1457dde1c88f280998e5be35fccdd24f5 100644 (file)
@@ -1,7 +1,7 @@
 ; Though this case seems to be fairly unlikely to occur in the wild, someone
 ; plunked it into the demo script, so maybe they care about it.
 ;
-; RUN: opt < %s -tailcallelim -S | not grep call
+; RUN: opt < %s -tailcallelim -S | FileCheck %s
 
 define i32 @aaa(i32 %c) {
 entry:
@@ -9,6 +9,7 @@ entry:
        br i1 %tmp.1, label %return, label %else
 else:          ; preds = %entry
        %tmp.5 = add i32 %c, -1         ; <i32> [#uses=1]
+; CHECK-NOT: call
        %tmp.3 = call i32 @aaa( i32 %tmp.5 )            ; <i32> [#uses=0]
        ret i32 0
 return:                ; preds = %entry