mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00:00
New pointer rotate test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135562 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cf1e967df2
commit
03c45f60f3
11
test/CodeGen/X86/ptr-rotate.ll
Normal file
11
test/CodeGen/X86/ptr-rotate.ll
Normal file
@ -0,0 +1,11 @@
|
||||
; 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user