mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
cb219f0ef6
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72558 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
315 B
LLVM
13 lines
315 B
LLVM
; RUN: llvm-as < %s | llc -march=x86 | grep mov | count 1
|
|
; RUN: llvm-as < %s | llc -march=x86-64 | 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(...)
|