xref: /llvm-project/llvm/test/CodeGen/Generic/2002-04-16-StackFrameSizeAlignment.ll (revision 0e8bd5a44a1bd8034706189b49a7a816c59304cd)
1; RUN: llc < %s
2
3; Compiling this file produces:
4; Sparc.cpp:91: failed assertion `(offset - OFFSET) % getStackFrameSizeAlignment() == 0'
5;
6declare i32 @SIM(ptr, ptr, i32, i32, i32, ptr, i32, i32, i32)
7
8define void @foo() {
9bb0:
10        %V = alloca [256 x i32], i32 256                ; <ptr> [#uses=1]
11        call i32 @SIM( ptr null, ptr null, i32 0, i32 0, i32 0, ptr %V, i32 0, i32 0, i32 2 )          ; <i32>:0 [#uses=0]
12        ret void
13}
14
15