Implement the "linker_private_weak" linkage type. This will be used for
[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 void @foo(i32 %x, i32* %p) nounwind {
5   %y = ashr i32 %x, 50000
6   store i32 %y, i32* %p
7   ret void
8 }