2013-03-12 17:27:52 +01:00
|
|
|
; REQUIRES: asserts
|
2012-07-02 20:37:59 +02:00
|
|
|
; RUN: llc < %s -march=x86 -stats 2>&1 | \
|
2007-04-16 17:15:52 +02:00
|
|
|
; RUN: grep asm-printer | grep 7
|
2006-03-03 19:58:09 +01:00
|
|
|
|
2008-04-01 01:20:09 +02:00
|
|
|
define i32 @g(i32 %a, i32 %b) nounwind {
|
2008-03-25 05:26:08 +01:00
|
|
|
%tmp.1 = shl i32 %b, 1 ; <i32> [#uses=1]
|
|
|
|
%tmp.3 = add i32 %tmp.1, %a ; <i32> [#uses=1]
|
|
|
|
%tmp.5 = mul i32 %tmp.3, %a ; <i32> [#uses=1]
|
|
|
|
%tmp.8 = mul i32 %b, %b ; <i32> [#uses=1]
|
|
|
|
%tmp.9 = add i32 %tmp.5, %tmp.8 ; <i32> [#uses=1]
|
|
|
|
ret i32 %tmp.9
|
2006-03-03 19:58:09 +01:00
|
|
|
}
|
2008-03-25 05:26:08 +01:00
|
|
|
|