Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
c6e68daac0fa6e77a89f3ca72f266a528503dd1c
/
.
/
clang
/
test
/
CodeGen
/
2009-06-14-HighlyAligned.c
blob: b5a7f5e733ff428f3318baad4a7e62b7e53eb36d [
file
] [
log
] [
blame
]
Eric Christopher
85e5156
2011-07-26 22:17:02 +0000
[
diff
] [
blame
]
1
// RUN: %clang_cc1 %s -emit-llvm -o /dev/null
2
// PR4332
3
4
static
int
highly_aligned __attribute__
((
aligned
(
4096
)));
5
6
int
f
()
{
7
return
highly_aligned
;
8
}