aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/XCore/alignment.ll
blob: 416aa62f08c47ea24f697d0001b77591a1226250 (plain)
1
2
3
4
5
6
7
8
9
; RUN: not --crash llc < %s -mtriple=xcore 2>&1 | FileCheck %s

; CHECK: emitPrologue unsupported alignment: 8
define void @f() nounwind {
entry:
  %BadAlignment = alloca i64, align 8
  ret void
}