mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-14 13:07:31 +00:00
98d2d07d41
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55893 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
219 B
LLVM
12 lines
219 B
LLVM
; RUN: llvm-as < %s | llc -fast-isel -march=x86
|
|
|
|
define i8 @t2(i8 %a, i8 %c) nounwind {
|
|
%tmp = shl i8 %a, %c
|
|
ret i8 %tmp
|
|
}
|
|
|
|
define i8 @t1(i8 %a) nounwind {
|
|
%tmp = mul i8 %a, 17
|
|
ret i8 %tmp
|
|
}
|