Implement a feature (-vector-unaligned-mem) to allow targets to
[oota-llvm.git] / test / CodeGen / X86 / fast-isel-shift-imm.ll
1 ; RUN: llc < %s -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 }