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
revert a hunk of r82018 that wasn't supposed to go in yet.
[llvm/avr.git]
/
test
/
LLVMC
/
test_data
/
false.cpp
blob
d3a7102f8ccab3214908ace935f08e7ec9bfd24c
1
/* RUN: ignore */
2
#include <stdio.h>
3
4
/* Make this invalid C++ */
5
typedef
struct
{
6
int
i
;
7
char
c
;
8
}
a
;
9
10
static
a b
= { .
i
=
65
, .
c
=
'r'
};
11
12
void
test
() {
13
b
.
i
=
9
;
14
fflush
(
stdout
);
15
printf
(
"el"
);
16
}
17