On Tue, 2005-08-30 at 10:52 +, Ferenc Kovacs wrote:
> Hello!
>
> I'm implementing a new IPA phase in GCC-4.1. I need to pass the address
> of a variable found in the stmt list to a newly created function (eg.
> "f") like this:
>
> {
> int x; /* ordinary non-pointertype local vars */
> int
Hello!
I'm implementing a new IPA phase in GCC-4.1. I need to pass the address
of a variable found in the stmt list to a newly created function (eg.
"f") like this:
{
int x; /* ordinary non-pointertype local vars */
int y;
[...]
x = 5;
y = x + 9;
f (&x); /* new call stmt inserted to