IR: Move MDLocation into place
[oota-llvm.git] / test / CodeGen / XCore / zext.ll
1 ; RUN: llc -march=xcore < %s | FileCheck %s
2
3 define i32 @f(i1 %a) {
4 entry:
5 ; CHECK: f
6 ; CHECK: zext r0, 1
7 ; CHECK: retsp 0
8   %b= zext i1 %a to i32
9   ret i32 %b
10 }