Don't emit FP_REG_KILL into a block that just returns. Nothing
[oota-llvm.git] / test / Integer / cfgstructures_bt.ll
index d8381b44f6d139ba543453709bee8450dc1894ff..09aec1fed219576adb32a896fadf26a3b58b7bf2 100644 (file)
@@ -2,12 +2,11 @@
 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
 ; RUN: diff %t1.ll %t2.ll
 
-implementation
 
 ;; This is an irreducible flow graph
 
 
-define void "irreducible"(i1 %cond)
+define void @"irreducible"(i1 %cond)
 begin
        br i1 %cond, label %X, label %Y
 
@@ -19,7 +18,7 @@ end
 
 ;; This is a pair of loops that share the same header
 
-define void "sharedheader"(i1 %cond)
+define void @"sharedheader"(i1 %cond)
 begin
        br label %A
 A:
@@ -32,7 +31,7 @@ Y:
 end
 
 ;; This is a simple nested loop
-define void "nested"(i1 %cond1, i1 %cond2, i1 %cond3)
+define void @"nested"(i1 %cond1, i1 %cond2, i1 %cond3)
 begin
        br label %Loop1