johannes    02/09/30 14:38:21

  Modified:    live/gcc3/gcc tree.c
  Log:
  Don't force all vectors to V4SI on x86.
  
  Revision  Changes    Path
  1.48      +2 -0      src/live/gcc3/gcc/tree.c
  
  Index: tree.c
  ===================================================================
  RCS file: /cvs/Darwin/src/live/gcc3/gcc/tree.c,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- tree.c    2002/09/20 01:34:56     1.47
  +++ tree.c    2002/09/30 21:38:20     1.48
  @@ -4843,9 +4843,11 @@
     TYPE_MODE (t) = mode;
     finish_vector_type (t);
     /* APPLE LOCAL AltiVec */
  +#ifdef TARGET_POWERPC
     /* Overwrite the real mode with V4SImode for all vectors.  This is */
     /* placed below finish_vector_type so the debug array size is right.  */
     TYPE_MODE (t) = V4SImode;
  +#endif
     return t;
   }
   
  
  
  


Reply via email to