xref: /aosp_15_r20/external/llvm/test/CodeGen/XCore/alignment.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: not llc < %s -march=xcore 2>&1 | FileCheck %s
2
3; CHECK: emitPrologue unsupported alignment: 8
4define void @f() nounwind {
5entry:
6  %BadAlignment = alloca i64, align 8
7  ret void
8}
9
10