Fixed some bugs in register stack pass.
[llvm/zpu.git] / test / CodeGen / X86 / promote-i16.ll
blob101bb29593cc8f889192a2ece9d01457a6f68787
1 ; RUN: llc < %s -march=x86 | FileCheck %s
3 define signext i16 @foo(i16 signext %x) nounwind {
4 entry:
5 ; CHECK: foo:
6 ; CHECK: movzwl 4(%esp), %eax
7 ; CHECK: xorl $21998, %eax
8 ; CHECK: movswl %ax, %eax
9   %0 = xor i16 %x, 21998
10   ret i16 %0