summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/promote-i16.ll
blob: d7622651b10e4d8bc6be12b4dfa00c0405e34253 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llc < %s -march=x86 | FileCheck %s

define signext i16 @foo(i16 signext %x) nounwind {
entry:
; CHECK: foo:
; CHECK: movzwl 4(%esp), %eax
; CHECK: xorl   $21998, %eax
; CHECK: movsx  %ax, %eax
  %0 = xor i16 %x, 21998
  ret i16 %0
}