Re: [CIL users] Modifying If-Then-Else code block

2010-03-16 Thread Gabriel Kerneis
Hi, On Mon, Mar 15, 2010 at 05:01:09PM -0600, ThanhVu (Vu) Nguyen wrote: > Hi, I am trying to insert a function call "fun_dummy"  at each branch of an > if-else statement but facing some problems.  Hope someone can help.   TIA   > [...] > Below lists my code,   the problem with this is that it onl

[CIL users] Modifying If-Then-Else code block

2010-03-15 Thread ThanhVu (Vu) Nguyen
Hi, I am trying to insert a function call "fun_dummy" at each branch of an if-else statement but facing some problems. Hope someone can help. TIA For example original code foo(){ if (a > 10){ if (b < 100){ } else{ } } else{ } }//end foo becomes foo(){ if (a > 10){