eccp optimized the assert away!?!, anyway I wanna fix the real error first...
[libfirm] / ir / be / test / fehler085.c
1 typedef struct TypeToken {
2         unsigned int handle;
3         unsigned short DbId;
4         unsigned short CoreDbId;
5 } TokenType;
6
7 extern TokenType NullToken;
8 TokenType NullToken = {0, 0, 0};
9
10 int main(int argc, char **argv)
11 {
12         TokenType t = NullToken;
13
14         return t.handle;
15 }