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: PR middle-end/18160


On Tue, Oct 26, 2004 at 03:54:18PM -0700, Adam Nemet wrote:
> Thanks for the hint.  It is actually DECL_HARD_REGISTER that should be
> cleared in c_mark_addressable() because of how expand_one_var() and
> use_register_for_decl() are formulated.

Hmm?? What exactly are you talking about?

  register int foo __asm__("%eax");
  &foo;

should, in my opinion, be a HARD error.  This case is so ill
formed that the user should be smacked.

In contrast, I understood

  register int bar;
  &bar;

to be the case we were allowing as just a warning.  Which,
I suppose, is ok.  Personally I'd still vote for a hard
error, but whatever.


r~


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