IR: Move MDLocation into place
[oota-llvm.git] / test / CodeGen / XCore / call.ll
1 ; RUN: llc < %s -march=xcore | FileCheck %s
2
3 ; CHECK-LABEL: bl_imm:
4 ; CHECK: ldw [[R0:r[0-9]+]], cp
5 ; CHECK: bla [[R0]]
6 define void @bl_imm() nounwind {
7 entry:
8         tail call void inttoptr (i64 65536 to void ()*)() nounwind
9         ret void
10 }