mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
18a780aca3
llvm-svn: 174006
13 lines
196 B
LLVM
13 lines
196 B
LLVM
; 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
|
|
}
|
|
|