cleanups/fixes for ASM handling
[libfirm] / ir / be / test / fehler013.c
1 #include <stdio.h>
2
3 int main()
4 {
5         const char *s = "no compiler is perfect";
6         const char *t = s;
7         char c = *t;
8
9         for( ; !((c == ' ') && (c != '\"')); t++) {
10                 c = *t;
11         }
12
13         printf("Res: %s\n", t);
14
15         return 0;
16 }