Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
0b8f0a208e9849c7ea50173b98acb51efbe1f2c7
/
.
/
test
/
FrontendC
/
2007-09-26-Alignment.c
blob: 1638fed05873a67b4533c8cb71fd208589f62ffa [
file
] [
log
] [
blame
]
Duncan Sands
ca9976d
2007-09-26 04:04:29 +0000
[
diff
] [
blame
]
1
// RUN: %llvmgcc -S %s -o - | grep {align 16}
2
extern
p
(
int
*);
3
int
q
(
void
)
{
4
int
x __attribute__
((
aligned
(
16
)));
5
p
(&
x
);
6
return
x
;
7
}