repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
zpu: managed to compile program that writes constant to global variable
[llvm/zpu.git]
/
test
/
FrontendC
/
func-aligned.c
blob
40149f49d8ecdf3d8d497f45a61f05e8b9cd8f39
1
// RUN: %llvmgcc %s -S -emit-llvm -o - | FileCheck %s
2
3
// rdar://7270273
4
void
foo
()
__attribute__
((
aligned
(
64
)));
5
void
foo
() {
6
// CHECK: define void @foo() {{.*}} align 64
7
}