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