when lowering 64bit Conds, construct new Cmps/Conds in the block of the Cond, not...
[libfirm] / ir / be / test / fehler017.c
1 #include <stdio.h>
2
3 char *p = "\xFF";
4
5 int main() {
6         printf("Result: %d (should be 255)\n", (unsigned char) (*p++));
7         return 0;
8 }