Daniel Jacobowitz wrote: > On Wed, Oct 19, 2005 at 10:48:53AM +0100, Andrew STUBBS wrote: > >>Is there any reason for using a union here? It's not like one value is >>float and the other int - both are ints and the fact that you can't tell >>which you are using shows nobody actually uses the distinction (unless I >>have missed something). The union doesn't save any space, nor does it >>make the code any more efficient. >> >>We could just use: >> >>CORE_ADDR line_or_address; >> >>and leave it at that. > > > I'd rather that. OK, how about the attached patch? Andrew