Re: "invalid operand to binary operator" problem

2005-08-30 Thread Daniel Berlin
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

"invalid operand to binary operator" problem

2005-08-30 Thread Ferenc Kovacs
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