OpenGrok
Cross Reference: 2008-01-24-StructAlignAndBitFields.c
xref
: /
external
/
llvm
/
test
/
FrontendC
/
2008-01-24-StructAlignAndBitFields.c
Home
|
History
|
Annotate
|
Download
|
only in
FrontendC
1
// RUN: %llvmgcc %s -S -o -
2
3
struct
U {
char
a;
short
b;
int
c:
25
;
char
d; } u;
4
5