repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[AArch64,ELF] Restrict MOVZ/MOVK to non-PIC large code model (#70178)
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
X86
/
dyn_alloca_aligned.ll
blob
24ae3809a82675ac7da99f7389499bcd2a635a14
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 ptr %A to i32
8
ret i32 %A_addr
9
}