mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +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
10 lines
253 B
LLVM
Executable File
10 lines
253 B
LLVM
Executable File
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
declare void @h(i32, ...)
|
|
define void @i() {
|
|
%args = alloca i32, inalloca
|
|
call void (i32, ...)* @h(i32 1, i32* inalloca %args, i32 3)
|
|
; CHECK: inalloca isn't on the last argument!
|
|
ret void
|
|
}
|