llvm-6502/test/CodeGen/ARM/mul.ll
2006-09-19 15:49:25 +00:00

16 lines
346 B
LLVM

; RUN: llvm-as < %s | llc -march=arm &&
; RUN: llvm-as < %s | llc -march=arm | grep "mul r0, r12, r0" | wc -l | grep 1 &&
; RUN: llvm-as < %s | llc -march=arm | grep "mul r0, r1, r0" | wc -l | grep 1
int %mul1(int %u) {
entry:
%tmp = mul int %u, %u;
ret int %tmp
}
int %mul2(int %u, int %v) {
entry:
%tmp = mul int %u, %v;
ret int %tmp
}