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