[PATCH] IA-32 bitfields (take 4)

Jakub Jelinek jakub@redhat.com
Wed Aug 7 09:53:00 GMT 2002


On Wed, Aug 07, 2002 at 12:49:03PM -0400, David Edelsohn wrote:
> >>>>> Richard Henderson writes:
> 
> Richard> The abi test needs to be
> 
> Richard> if (DEFAULT_ABI == ABI_V4)
> Richard>   {
> Richard>      vector test
> Richard>   }
> Richard> else
> Richard>   {
> Richard>      dfmode test.
> Richard>   }
> 
> 	Yes, that's probably better.  It changes the definition for
> ABI_AIX_NODESC, but that has been wrong since it was placed in sysv4.h.

So it be
if (DEFAULT_ABI == ABI_V4)
  {
    vector test
  }
else
  {
    dfmode test
  }

return computed;

or

if (DEFAULT_ABI == ABI_V4)
  {
    vector test
  }
else if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_DARWIN)
  {
    dfmode test
  }

return computed;

then?

	Jakub



More information about the Gcc-patches mailing list