repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git]
/
test
/
FrontendC
/
2008-08-07-AlignPadding2.c
blob
ea13a0a1bc67f9b4323601ec5765865d634db5d1
1
/* RUN: %llvmgcc %s -S -o - -emit-llvm -O0 | grep zeroinitializer | count 1
2
3
The FE must not generate padding here between array elements. PR 2533. */
4
5
typedef
struct
{
6
const char
*
name
;
7
int
flags
;
8
union
{
9
int
x
;
10
}
u
;
11
}
OptionDef
;
12
13
const
OptionDef options
[] = {
14
/* main options */
15
{
"a"
,
0
, {
3
} },
16
{
"b"
,
0
, {
4
} },
17
{
0
, },
18
};