mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
47772bf0e5
llvm-svn: 17527
13 lines
248 B
LLVM
13 lines
248 B
LLVM
; RUN: llvm-as < %s | llc -march=c
|
|
|
|
%y = weak global sbyte 0
|
|
implementation
|
|
uint %testcaseshr() {
|
|
entry:
|
|
ret uint shr (uint cast (sbyte* %y to uint), ubyte 4)
|
|
}
|
|
uint %testcaseshl() {
|
|
entry:
|
|
ret uint shl (uint cast (sbyte* %y to uint), ubyte 4)
|
|
}
|