blob: d55ece7996edfdd8228a1847c62b88de1742c63c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
; 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
}
|