Commit 50ae5fea by Ian Lance Taylor Committed by Ian Lance Taylor

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

From-SVN: r148712
parent eb6f9a86
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.
* sdbout.c (sdb_debug_hooks): Initialize non-SDB_DEBUGGING_INFO
version.
......
......@@ -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. */
......
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