summaryrefslogtreecommitdiff
path: root/test/Bitcode/tailcall.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Bitcode/tailcall.ll')
-rw-r--r--test/Bitcode/tailcall.ll16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/Bitcode/tailcall.ll b/test/Bitcode/tailcall.ll
index 01190d74c3486..6a4b8885847a5 100644
--- a/test/Bitcode/tailcall.ll
+++ b/test/Bitcode/tailcall.ll
@@ -3,16 +3,16 @@
; Check that musttail and tail roundtrip.
-declare cc8191 void @t1_callee()
-define cc8191 void @t1() {
-; CHECK: tail call cc8191 void @t1_callee()
- tail call cc8191 void @t1_callee()
+declare cc1023 void @t1_callee()
+define cc1023 void @t1() {
+; CHECK: tail call cc1023 void @t1_callee()
+ tail call cc1023 void @t1_callee()
ret void
}
-declare cc8191 void @t2_callee()
-define cc8191 void @t2() {
-; CHECK: musttail call cc8191 void @t2_callee()
- musttail call cc8191 void @t2_callee()
+declare cc1023 void @t2_callee()
+define cc1023 void @t2() {
+; CHECK: musttail call cc1023 void @t2_callee()
+ musttail call cc1023 void @t2_callee()
ret void
}