aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/XCore/call.ll
blob: 0dbec44264cc70d15dfc6d457ebd0781ecd42ab0 (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llc < %s -mtriple=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
}