Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
46bb4f1a3ac9517406887939612eb8df4b7be006
/
.
/
test
/
Sema
/
align-x86-64.c
blob: 6dcf5714b00538b47dc10a2d97f21fedb43b7a09 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -fsyntax-only -verify %s
// PR5599
void
frob
(
void
*);
void
foo
(
void
)
{
float
x
[
4
];
char
y
[
__alignof__
(
x
)
==
16
?
1
:
-
1
];
frob
(
y
);
}