Hello, all

TCC compiles the following program:

int main( int argc, char** argv )
{  int   i, *iP;
   void* vP;
   i  = 55;
   iP = &i;
   vP = &(void*)iP; /* syntax error */
   return 0;
}

whereas it should fail with a syntax error, because
the & operator requires an lvalue.

P.S.: Sorry for sending this to the owner the first
      time.

-- 
()  ascii ribbon campaign -- against html e-mail
/\  http://preview.tinyurl.com/qcy6mjc [archived]

_______________________________________________
Tinycc-devel mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/tinycc-devel

Reply via email to