Home | History | Annotate | Download | only in XCore
      1 ; RUN: not llc < %s -march=xcore 2>&1 | FileCheck %s
      2 
      3 ; CHECK: emitPrologue unsupported alignment: 8
      4 define void @f() nounwind {
      5 entry:
      6   %BadAlignment = alloca i64, align 8
      7   ret void
      8 }
      9 
     10