Adding test for machine-licm operating on invariant load instructions
[oota-llvm.git] / test / Integer / unreachable_bt.ll
index 1ab4e8e47adbce713d5e3eda4a5751bd94a21595..cb65d4b9ec8a46029579e08198e5dc0a8711d6d7 100644 (file)
@@ -3,15 +3,14 @@
 ; RUN: diff %t1.ll %t2.ll
 
 
-implementation
 
-declare void %bar()
+declare void @bar()
 
-define i9 %foo() {  ;; Calling this function has undefined behavior
+define i9 @foo() {  ;; Calling this function has undefined behavior
        unreachable
 }
 
-define double %xyz() {
-       call void %bar()
+define double @xyz() {
+       call void @bar()
        unreachable          ;; Bar must not return.
 }