Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / SPARC / fail-alloca-align.ll
blobe2dc235389b1dc1cf0b5c2f868c2741b85ec8e59
1 ;; Sparc backend can't currently handle variable allocas with
2 ;; alignment greater than the stack alignment.  This code ought to
3 ;; compile, but doesn't currently.
5 ;; RUN: not --crash llc -march=sparc < %s 2>&1 | FileCheck %s
6 ;; RUN: not --crash llc -march=sparcv9 < %s 2>&1 | FileCheck %s
7 ;; CHECK: ERROR: Function {{.*}} required stack re-alignment
9 define void @variable_alloca_with_overalignment(i32 %num) {
10   %aligned = alloca i32, align 64
11   %var_size = alloca i8, i32 %num, align 4
12   call void @foo(ptr %aligned, ptr %var_size)
13   ret void
16 ;; Same but with the alloca itself overaligned
17 define void @variable_alloca_with_overalignment_2(i32 %num) {
18   %var_size = alloca i8, i32 %num, align 64
19   call void @foo(ptr null, ptr %var_size)
20   ret void
23 declare void @foo(ptr, ptr);