llvm-project/llvm/test/CodeGen/PowerPC/huge-frame-unsupported.ll
Kai Nacke 427fb35192 [PPC] Opaque pointer migration, part 1.
The LIT test cases were migrated with the script provided by
Nikita Popov. Due to the size of the change it is split into
several parts.

Reviewed By: nemanja, amyk, nikic, PowerPC

Differential Revision: https://reviews.llvm.org/D135470
2022-10-11 17:24:06 +00:00

14 lines
309 B
LLVM

; 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
}