Hi all, I found a bug in x64-86 version when comparing pointer and constant:
#include <stdio.h>
int
main(int argc, char *argv[])
{
char *p = (char *)0x12345678ABCD000F;
if( p != (char *)0x12345678ABCD000F )
printf( "Hu?\n" );
else printf( "Ok\n" );
}
Q. how can I see the .s output (as generally using -S on most compilers) ?
Christian
_______________________________________________
Tinycc-devel mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/tinycc-devel
