You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; RUN: llc < %s -march=x86 | FileCheck %s
|
|
|
|
declare i32 @foo()
|
|
|
|
define i32 @test() {
|
|
%tmp.0 = tail call i32 @foo( )
|
|
%tmp.1 = mul i32 %tmp.0, 9
|
|
; CHECK-NOT: mul
|
|
; CHECK: lea
|
|
ret i32 %tmp.1
|
|
}
|
|
|