Fixed some bugs.
[llvm/zpu.git] / test / LLVMC / test_data / false.cpp
blob593fcd5805a3e3e43fa56c03f6dc76df5ad7d8ce
1 #include <stdio.h>
3 /* Make this invalid C++ */
4 typedef struct {
5 int i;
6 char c;
7 } a;
9 static a b = { .i = 65, .c = 'r'};
11 void test() {
12 b.i = 9;
13 fflush(stdout);
14 printf("el");