1; REQUIRES: asserts 2; RUN: not --crash llc -verify-machineinstrs -mtriple=powerpc-unknown-unknown < %s \ 3; RUN: 2>&1 | FileCheck %s 4 5declare void @bar(ptr) 6 7define void @foo(i8 %x) { 8; CHECK: Unhandled stack size 9entry: 10 %a = alloca i8, i64 4294967296, align 16 11 store volatile i8 %x, ptr %a 12 ret void 13} 14