llvm-6502/test/CodeGen/X86/avoid-lea-scale2.ll
2009-07-22 23:26:55 +00:00

9 lines
185 B
LLVM

; RUN: llvm-as < %s | llc -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
}