blob: c47b99013aa7f0c8bff682afe07b442794df2f96 [file] [log] [blame]
Dan Gohmandb8419c2008-12-20 17:19:40 +00001; RUN: llvm-as < %s | llc -march=x86 -fast | grep {sarl \$80, %eax}
2; PR3242
3
4define i32 @foo(i32 %x) nounwind {
5 %y = ashr i32 %x, 50000
6 ret i32 %y
7}