Re: [Tinycc-devel] Addresses of variables

2010-04-11 Thread Timo
Alexei wrote: Isn't it a BUG? #include int main(int argc, char **argv) { int first; int second; printf("&first=%08X &second=%08X",&first,&second); return 0; } - &first=0012FF94 &second=0012FF90 What exactly do you think is a bug? If you think, that it i

Re: [Tinycc-devel] Addresses of variables

2010-04-11 Thread Vincent Lefevre
On 2010-04-11 02:37:22 -0900, Alexei wrote: > Isn't it a BUG? > > #include > int main(int argc, char **argv) > { > int first; > int second; > printf("&first=%08X &second=%08X",&first,&second); > return 0; > } > - > &first=0012FF94 &second=0012FF90 This isn

[Tinycc-devel] Addresses of variables

2010-04-11 Thread Alexei
Isn't it a BUG? #include int main(int argc, char **argv) { int first; int second; printf("&first=%08X &second=%08X",&first,&second); return 0; } - &first=0012FF94 &second=0012FF90 ___ Tinycc-devel mailing list