1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/CodeGen/X86/dynamic-alloca-in-entry.ll
Hans Wennborg 5b89989aa5 Re-commit r269828 "X86: Avoid using _chkstk when lowering WIN_ALLOCA instructions"
with an additional fix to make RegAllocFast ignore undef physreg uses. It would
previously get confused about the "push %eax" instruction's use of eax. That
method for adjusting the stack pointer is used in X86FrameLowering::emitSPUpdate
as well, but since that runs after register-allocation, we didn't run into the
RegAllocFast issue before.

llvm-svn: 269949
2016-05-18 16:10:17 +00:00

20 lines
419 B
LLVM

; RUN: llc < %s -mtriple=i686-pc-win32 | FileCheck %s
; Allocas with unknown size in the entry block are dynamic.
define void @foo(i32 %n) {
%m = alloca i32, i32 %n
ret void
}
; CHECK-LABEL: _foo:
; CHECK: calll __chkstk
; CHECK: retl
; Use of inalloca implies that that the alloca is not static.
define void @bar() {
%m = alloca inalloca i32
ret void
}
; CHECK-LABEL: _bar:
; CHECK: pushl %eax
; CHECK: retl