repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] Adjust how NEON shifts are lowered
[llvm-core.git]
/
test
/
CodeGen
/
X86
/
dyn_alloca_aligned.ll
blob
993f4d2af75dfdedd98385c760137502fffd275a
1
; RUN: llc -mtriple=x86_64-linux < %s | FileCheck %s
2
define i32 @A(i32 %Size) {
3
; CHECK: subq %rcx, %rax
4
; CHECK: andq $-128, %rax
5
; CHECK: movq %rax, %rsp
6
%A = alloca i8, i32 %Size, align 128
7
%A_addr = ptrtoint i8* %A to i32
8
ret i32 %A_addr
9
}