Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
3cdf8d5c52e991cc088488aa59c06a55b6b10ebc
/
.
/
test
/
FrontendC
/
2009-06-14-HighlyAligned.c
blob: 4678b75b6daf93a4f19db4f79e44df5f622abe3a [
file
] [
log
] [
blame
]
Duncan Sands
3cdf8d5
2009-06-14 22:22:42 +0000
[
diff
] [
blame^
]
1
// RUN: %llvmgcc %s -S
2
// PR4332
3
4
static
int
highly_aligned __attribute__
((
aligned
(
4096
)));
5
6
int
f
()
{
7
return
highly_aligned
;
8
}