blob: b1515b51482027aa906cb6d39814b1e0f4258b72 [file] [log] [blame]
Dan Gohmanda594cf2009-09-09 00:09:15 +00001; RUN: llc < %s -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}