Commit 3414548c authored by rth's avatar rth
Browse files

* config/ia64/ia64.h (PROMOTE_MODE): Only extend to SImode.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35646 138bc75d-0d04-0410-961f-82ee72b054a4
parent d793b7ed
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
......
......@@ -300,15 +300,12 @@ extern const char *ia64_fixed_range_string;
/* 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)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment