1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-02 00:42:52 +01:00
llvm-mirror/test/CodeGen/Thumb/mul.ll
Evan Cheng 37abb8fc28 Add missing tests.
llvm-svn: 74945
2009-07-07 20:38:08 +00:00

23 lines
410 B
LLVM

; RUN: llvm-as < %s | llc -march=thumb | grep mul | count 3
; RUN: llvm-as < %s | llc -march=thumb | grep lsl | count 1
define i32 @f1(i32 %u) {
%tmp = mul i32 %u, %u
ret i32 %tmp
}
define i32 @f2(i32 %u, i32 %v) {
%tmp = mul i32 %u, %v
ret i32 %tmp
}
define i32 @f3(i32 %u) {
%tmp = mul i32 %u, 5
ret i32 %tmp
}
define i32 @f4(i32 %u) {
%tmp = mul i32 %u, 4
ret i32 %tmp
}