Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
ddb265b905cf83c44bfa0819c3a80dc13f29173f
/
.
/
llvm
/
test
/
CFrontend
/
2007-09-26-Alignment.c
blob: 1638fed05873a67b4533c8cb71fd208589f62ffa [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S %s -o - | grep {align 16}
extern
p
(
int
*);
int
q
(
void
)
{
int
x __attribute__
((
aligned
(
16
)));
p
(&
x
);
return
x
;
}