repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
XCore
/
alignment.ll
blob
0c561ee4f6c6a59a6e126f33a03744f4671c407c
1
; RUN: not --crash 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