summaryrefslogtreecommitdiff
path: root/test/Integer/unreachable_bt.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Integer/unreachable_bt.ll')
-rw-r--r--test/Integer/unreachable_bt.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Integer/unreachable_bt.ll b/test/Integer/unreachable_bt.ll
index 1ab4e8e47a..60b7bf8eb9 100644
--- a/test/Integer/unreachable_bt.ll
+++ b/test/Integer/unreachable_bt.ll
@@ -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.
}