+2000-08-11 Richard Henderson <rth@cygnus.com>
+
+ * config/ia64/ia64.h (PROMOTE_MODE): Only extend to SImode.
+
2000-08-11 Mark Elbrecht <snowball3@bigfoot.com>
* gcc.texi (The Configuration File): Document
/* A macro to update MODE and UNSIGNEDP when an object whose type is TYPE and
which has the specified mode and signedness is to be stored in a register.
This macro is only called when TYPE is a scalar type. */
-
-/* ??? Maybe sign-extend 32 bit values like the alpha? Or maybe zero-extend
- because we only have zero-extending loads? */
#define PROMOTE_MODE(MODE,UNSIGNEDP,TYPE) \
do \
{ \
if (GET_MODE_CLASS (MODE) == MODE_INT \
- && GET_MODE_SIZE (MODE) < UNITS_PER_WORD) \
- (MODE) = DImode; \
+ && GET_MODE_SIZE (MODE) < 4) \
+ (MODE) = SImode; \
} \
while (0)