Files
clang-p2996/llvm/test/CodeGen/XCore/call.ll
2022-12-19 13:12:27 +01:00

11 lines
227 B
LLVM

; 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 ptr)() nounwind
ret void
}