For PR761:
[oota-llvm.git] / test / Integer / unreachable_bt.ll
index 1ab4e8e47adbce713d5e3eda4a5751bd94a21595..60b7bf8eb92c734c8fc4f5057019b4f439c85de2 100644 (file)
@@ -5,13 +5,13 @@
 
 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.
 }