blob: 7b57423cd1966c3fc6a1467849bf99c8498af488 [file] [log] [blame]
Evan Cheng02f6f9f2009-08-10 23:56:04 +00001; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | FileCheck %s
David Goodwin71ee46b2009-06-26 22:37:07 +00002
3define i32 @f1(i32 %a, i32 %b, i32 %c) {
Evan Cheng02f6f9f2009-08-10 23:56:04 +00004; CHECK: f1:
5; CHECK: muls r0, r1
David Goodwin71ee46b2009-06-26 22:37:07 +00006 %tmp = mul i32 %a, %b
7 ret i32 %tmp
8}