Displaying 1 result from an estimated 1 matches for "itemp0".
Did you mean:
itemp
2013 May 11
0
[LLVMdev] Fw: Accepting iCode as input to SDCC
...de's and asm's. As an example,
========
int a, b, c;
int foo()
{
return a & b;
}
========
is compiled into external iCode representation as:
========
defvar a{int fixed as=data}
defvar b{int fixed as=data}
defvar c{int fixed as=data}
_entry:
proc foo{int ( ) fixed as=code}
iTemp0{int fixed as=data} = a{int fixed as=data} & b{int fixed
as=data} ret iTemp0{int fixed as=data}
_return:
eproc foo{int ( ) fixed as=code}
========
I would target this work to be submitted upstream, so would appreciate
comments on the idea, approach, and early implementation available so
far....