mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
5e485c833f
because it's more likely to keep debug line information in its original order. llvm-svn: 108496
9 lines
172 B
LLVM
9 lines
172 B
LLVM
; RUN: llc < %s -march=x86 -O0 | grep {sarl \$80, %e}
|
|
; PR3242
|
|
|
|
define void @foo(i32 %x, i32* %p) nounwind {
|
|
%y = ashr i32 %x, 50000
|
|
store i32 %y, i32* %p
|
|
ret void
|
|
}
|