1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/CodeGen/XCore/call.ll

11 lines
232 B
LLVM
Raw Normal View History

; RUN: llc < %s -march=xcore | FileCheck %s
; CHECK-LABEL: bl_imm:
; CHECK: ldw [[R0:r[0-9]+]], cp
; CHECK: bla [[R0]]
define void @bl_imm() nounwind {
entry:
tail call void inttoptr (i64 65536 to void ()*)() nounwind
ret void
}