aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/h-registers-3.ll
blob: 58b02b7df21f54503615e85702f96535ba3debb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llc < %s -march=x86    | grep mov | count 1
; RUN: llc < %s -march=x86-64 | grep mov | count 1
; RUN: llc < %s -mtriple=x86_64-linux-gnux32 | grep mov | count 1

define zeroext i8 @foo() nounwind ssp {
entry:
  %0 = tail call zeroext i16 (...) @bar() nounwind
  %1 = lshr i16 %0, 8
  %2 = trunc i16 %1 to i8
  ret i8 %2
}

declare zeroext i16 @bar(...)