This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Problem with new port


Hi,

I've now tracked down the problem I was having with
virtual-outgoing-args -- it turned out to be a macro I
had misdefined:

#define CONSTANT_ADDRESS_P(X) 1

which I changed to (similar to other ports):

#define CONSTANT_ADDRESS_P(X) \
  (GET_CODE(X) == SYMBOL_REF &&
CONSTANT_POOL_ADDRESS_P (X))

I'd like to take the opportunity to thank Dan and
Joern for the help they gave me. I'm sure there'll be
much more I need to know later...

Cheers,

Jules

__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]