mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-12 06:06:19 +00:00
6bcdb5b903
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164674 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
274 B
LLVM
12 lines
274 B
LLVM
; RUN: llc -mtriple=i386-apple-darwin -mcpu=corei7 -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
|
|
}
|