mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
395f9ebf2a
Summary: The only current use of this flag is to mark the alloca as dynamic, even if its in the entry block. The stack adjustment for the alloca can never be folded into the prologue because the call may clear it and it has to be allocated at the top of the stack. Reviewers: majnemer CC: llvm-commits Differential Revision: http://llvm-reviews.chandlerc.com/D2571 llvm-svn: 199525
17 lines
396 B
LLVM
17 lines
396 B
LLVM
; RUN: llvm-as %s -o /dev/null
|
|
|
|
define void @a() {
|
|
entry:
|
|
%0 = alloca i32, inalloca
|
|
%1 = alloca [2 x i32], inalloca
|
|
%2 = alloca i32, inalloca, i32 2
|
|
%3 = alloca i32, inalloca, i32 2, align 16
|
|
%4 = alloca i32, inalloca, i32 2, align 16, !foo !0
|
|
%5 = alloca i32, i32 2, align 16, !foo !0
|
|
%6 = alloca i32, i32 2, align 16
|
|
ret void
|
|
}
|
|
|
|
!0 = metadata !{i32 662302, null}
|
|
!foo = !{ !0 }
|