mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
df2896d609
llvm-svn: 81290
12 lines
226 B
LLVM
12 lines
226 B
LLVM
; RUN: llc < %s -fast-isel -fast-isel-abort -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
|
|
}
|