repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[RISCV] Support 'f' Inline Assembly Constraint
[llvm-core.git]
/
test
/
CodeGen
/
XCore
/
alignment.ll
blob
28bdf3b742087f2eea94d364efb44319069ea2d3
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