summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/avoid-lea-scale2.ll
blob: 8003de262d2cfaa00f20802925ad37096d3c8ce1 (plain)
1
2
3
4
5
6
7
8
; RUN: llc < %s -march=x86-64 | grep {leal.*-2(\[%\]rdi,\[%\]rdi)}

define i32 @foo(i32 %x) nounwind readnone {
  %t0 = shl i32 %x, 1
  %t1 = add i32 %t0, -2
  ret i32 %t1
}