llvm-for-llvmta/test/CodeGen/XCore/alignment.ll

10 lines
196 B
LLVM
Raw Normal View History

2022-04-25 10:02:23 +02:00
; RUN: not --crash llc < %s -march=xcore 2>&1 | FileCheck %s
; CHECK: emitPrologue unsupported alignment: 8
define void @f() nounwind {
entry:
%BadAlignment = alloca i64, align 8
ret void
}