Adjust libcalls tests to expect intrinsic for exp2
[oota-llvm.git] / test / Transforms / SimplifyCFG / basictest.ll
index c86d9398f5a6b820633056611ceedce300c81e90..1fd629a4fd41603dd496827ac8af4a96b5e8d8a2 100644 (file)
@@ -1,27 +1,25 @@
 ; Test CFG simplify removal of branch instructions...
 ;
-; RUN: if as < %s | opt -simplifycfg | dis | grep br
-; RUN: then exit 1
-; RUN: else exit 0
-; RUN: fi
+; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | not grep br
 
-
-void "test1"() {
-       br label %BB1
-BB1:
-       ret void
+define void @test1() {
+        br label %BB1
+BB1:            ; preds = %0
+        ret void
 }
 
-void "test2"() {
-       ret void
-BB1:
-       ret void
+define void @test2() {
+        ret void
+BB1:            ; No predecessors!
+        ret void
 }
 
-void "test3"(bool %T) {
-       br bool %T, label %BB1, label %BB1
-BB1:
-       ret void
+define void @test3(i1 %T) {
+        br i1 %T, label %BB1, label %BB1
+BB1:            ; preds = %0, %0
+        ret void
 }
 
 
+
+