* rtl.h (SUBREG_PROMOTED_UNSIGNED_P): Add cast to int.

From-SVN: r148712
This commit is contained in:
Ian Lance Taylor 2009-06-19 15:53:07 +00:00 committed by Ian Lance Taylor
parent eb6f9a86c5
commit 50ae5feab3
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-06-19 Ian Lance Taylor <iant@google.com>
* rtl.h (SUBREG_PROMOTED_UNSIGNED_P): Add cast to int.
2009-06-19 Ian Lance Taylor <iant@google.com>
* ggc-page.c (ggc_pch_write_object): Initialize emptyBytes.

View File

@ -1120,7 +1120,7 @@ do { \
} while (0)
#define SUBREG_PROMOTED_UNSIGNED_P(RTX) \
((RTL_FLAG_CHECK1("SUBREG_PROMOTED_UNSIGNED_P", (RTX), SUBREG)->volatil) \
? -1 : (RTX)->unchanging)
? -1 : (int) (RTX)->unchanging)
/* Access various components of an ASM_OPERANDS rtx. */