i386.h (CONDITIONAL_REGISTER_USAGE): Use defined names instead of magic constants for REX SSE registers.

* config/i386/i386.h (CONDITIONAL_REGISTER_USAGE): Use defined
        names instead of magic constants for REX SSE registers.

From-SVN: r144533
This commit is contained in:
Uros Bizjak 2009-03-01 22:58:31 +01:00 committed by Uros Bizjak
parent 6b5629db5a
commit 434426d2dd
2 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,8 @@
2009-03-01 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.h (CONDITIONAL_REGISTER_USAGE): Do not
shadow "i" variable.
* config/i386/i386.h (CONDITIONAL_REGISTER_USAGE): Do not shadow "i"
variable. Use defined names instead of magic constants for REX SSE
registers.
2009-03-01 Richard Guenther <rguenther@suse.de>

View File

@ -942,10 +942,10 @@ do { \
{ \
call_used_regs[4 /*RSI*/] = 0; \
call_used_regs[5 /*RDI*/] = 0; \
for (i = 0; i < 8; i++) \
call_used_regs[45+i] = 0; \
call_used_regs[27 /*XMM6*/] = 0; \
call_used_regs[28 /*XMM7*/] = 0; \
for (i = FIRST_REX_SSE_REG; i <= LAST_REX_SSE_REG; i++) \
call_used_regs[i] = 0; \
} \
if (! TARGET_MMX) \
for (i = 0; i < FIRST_PSEUDO_REGISTER; i++) \