brintos

brintos / llvm-project-archived public Read only

0
0
Text · 309 B · 97bebec Raw
14 lines · plain
1; REQUIRES: asserts2; RUN: not --crash llc -verify-machineinstrs -mtriple=powerpc-unknown-unknown < %s \3; RUN:   2>&1 | FileCheck %s4 5declare void @bar(ptr)6 7define void @foo(i8 %x) {8; CHECK: Unhandled stack size9entry:10  %a = alloca i8, i64 4294967296, align 1611  store volatile i8 %x, ptr %a12  ret void13}14