Hello,
Is it possible to use CIL to transform expressions like "z = x*2+y;"
into a series of simple three-operand statements:
z = x * 2;
z = z + y;
If so, I assume I would have to write a CIL module?
I'd appreciate any pointers. Thank you for your time.
Mansour
--
On 2012-12-04, at 3:00 AM, Mansour Moufid wrote:
> Hello,
>
> Is it possible to use CIL to transform expressions like "z = x*2+y;"
> into a series of simple three-operand statements:
>
>z = x * 2;
>z = z + y;
>
> If so, I assume I would have to write a CIL module?
>
> I'd appreciate an