+Sun Dec 2 09:03:06 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
+
+ * cfgbuild.c (SET_STATE): Add cast to eliminate warning.a
+
2001-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* cfgrtl.c (purge_all_dead_edges): Initialize variable.
BLOCK_TO_SPLIT
};
#define STATE(bb) (enum state)(size_t)(bb)->aux
-#define SET_STATE(bb, state) (bb)->aux = (void *)(state)
+#define SET_STATE(bb, state) (bb)->aux = (void *) (size_t) (state)
/* Scan basic block BB for possible BB boundaries inside the block
and create new basic blocks in the progress. */
int min, max;
for (i = 0; i < n_basic_blocks; i++)
- {
- SET_STATE (BASIC_BLOCK (i),
- TEST_BIT (blocks, i)
- ? BLOCK_TO_SPLIT : BLOCK_ORIGINAL);
- }
+ SET_STATE (BASIC_BLOCK (i),
+ TEST_BIT (blocks, i) ? BLOCK_TO_SPLIT : BLOCK_ORIGINAL);
for (i = 0; i < n_basic_blocks; i++)
{