repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs.
[llvm/zpu.git]
/
test
/
LLVMC
/
test_data
/
false.cpp
blob
593fcd5805a3e3e43fa56c03f6dc76df5ad7d8ce
1
#include <stdio.h>
2
3
/* Make this invalid C++ */
4
typedef
struct
{
5
int
i
;
6
char
c
;
7
}
a
;
8
9
static
a b
= { .
i
=
65
, .
c
=
'r'
};
10
11
void
test
() {
12
b
.
i
=
9
;
13
fflush
(
stdout
);
14
printf
(
"el"
);
15
}
16