mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
df2896d609
llvm-svn: 81290
10 lines
205 B
LLVM
10 lines
205 B
LLVM
; RUN: llc < %s -march=x86
|
|
; RUN: llc < %s -march=x86-64
|
|
|
|
define void @t(i256 %x, i256 %a, i256* nocapture %r) nounwind readnone {
|
|
entry:
|
|
%0 = ashr i256 %x, %a
|
|
store i256 %0, i256* %r
|
|
ret void
|
|
}
|