Does anyone know if there is any existing optimization in Cil that  
will do the translation of

   int a;
   int *b = &a;
   *b = 4;
   ...

into

   int a;
   int *b = &a;
   a = 4;
   ...

?

Thanks,
Ben


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
CIL-users mailing list
CIL-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cil-users

Reply via email to