aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/PowerPC/huge-frame-unsupported.ll
blob: 97bebec1d072fd7021e31715451325bae08b95e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; REQUIRES: asserts
; RUN: not --crash llc -verify-machineinstrs -mtriple=powerpc-unknown-unknown < %s \
; RUN:   2>&1 | FileCheck %s

declare void @bar(ptr)

define void @foo(i8 %x) {
; CHECK: Unhandled stack size
entry:
  %a = alloca i8, i64 4294967296, align 16
  store volatile i8 %x, ptr %a
  ret void
}