Hi, I believe that CIL modifies/simplies many C statements internally,
.e.,g

while (exp)  {body}  becomes
while(1) { if(!exp) break; body}

and

if (exp) {b1} else {b2} becomes
int t = exp ;  if t {b1} {b2}


is there a way, like passing a flag to cilly, that allows me to get the
modified C version ?   the flag --save-temps gives the .i file but it
doesn't contain these modifications.

Thank you,


Vu
------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
_______________________________________________
CIL-users mailing list
CIL-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cil-users

Reply via email to