Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want to
[oota-llvm.git] / test / CodeGen / X86 / fast-isel-shift-imm.ll
1 ; RUN: llvm-as < %s | llc -march=x86 -O0 | grep {sarl   \$80, %eax}
2 ; PR3242
3
4 define i32 @foo(i32 %x) nounwind {
5   %y = ashr i32 %x, 50000
6   ret i32 %y
7 }