mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
7510091996
llvm-svn: 135562
12 lines
261 B
LLVM
12 lines
261 B
LLVM
; RUN: llc -mtriple=i386-apple-darwin -o - < %s | FileCheck %s
|
|
|
|
define i32 @func(i8* %A) nounwind readnone {
|
|
entry:
|
|
%tmp = ptrtoint i8* %A to i32
|
|
%shr = lshr i32 %tmp, 5
|
|
%shl = shl i32 %tmp, 27
|
|
%or = or i32 %shr, %shl
|
|
; CHECK: roll $27
|
|
ret i32 %or
|
|
}
|