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: [tree-ssa] RFC: Never gimplify ASM_EXPRs


Richard Henderson <rth@redhat.com> writes:

>   register short int x;
>   __asm__ ("fldcw %0" : : "m"(x));
>
> I.e. a DECL_P that cannot be addressed.  Possibly that
> already happens inside the lang_hook; I havn't checked.

3.3 treats this identically to

  register short int x;
  use(&x);

i.e. on-by-default warning, becomes an error with -pedantic-errors.

zw


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