repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove wasteful caching. This isn't needed for correctness because any function
[llvm.git]
/
test
/
FrontendC
/
2009-06-14-HighlyAligned.c
blob
227db74f47a07d76df221da3f1a12d06ac192b91
1
// RUN: %llvmgcc %s -S -o /dev/null
2
// PR4332
3
4
static int
highly_aligned
__attribute__
((
aligned
(
4096
)));
5
6
int
f
() {
7
return
highly_aligned
;
8
}