demonstartes a bug in the tarval module
[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 }