mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-04 01:11:44 +00:00
c460e7e50a
The alignment of allocated space was wrong, see Bugzila 17345. Done by Zvi Rackover <zvi.rackover@intel.com>. llvm-svn: 192573
10 lines
262 B
LLVM
10 lines
262 B
LLVM
; RUN: llc -mtriple=x86_64-linux < %s | FileCheck %s
|
|
define i32 @A(i32 %Size) {
|
|
; CHECK: subq %rcx, %rax
|
|
; CHECK: andq $-128, %rax
|
|
; CHECK: movq %rax, %rsp
|
|
%A = alloca i8, i32 %Size, align 128
|
|
%A_addr = ptrtoint i8* %A to i32
|
|
ret i32 %A_addr
|
|
}
|