xref: /llvm-project/llvm/test/CodeGen/XCore/alignment.ll (revision f1987c74ee5637ec248675a9a7070654167a5260)
1; RUN: not --crash llc < %s -mtriple=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