• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc < %s -march=x86 | grep lea
2
3declare i32 @foo()
4
5define i32 @test() {
6        %tmp.0 = tail call i32 @foo( )          ; <i32> [#uses=1]
7        %tmp.1 = mul i32 %tmp.0, 9              ; <i32> [#uses=1]
8        ret i32 %tmp.1
9}
10
11