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: BIT_FIELD_REF on the LHS


Andrew Pinski wrote on 07/13/06 08:37:

> #define vector __attribute__((vector_size(16) ))
> 
> vector float f(vector float t, vector t1)
> {
>   return t/t1;
> }
> 
> -- Pinski
>
That definitely seems wrong.  We shouldn't be considering vector types
to be GIMPLE register types if we are going to be chunking them out with
BIT_FIELD_REF.  The verifier ought to check that.

Allowing SSA names to be accessed in a non-atomic fashion is a recipe
for bad codegen.


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