diff options
Diffstat (limited to 'gcc/cfgcleanup.c')
-rw-r--r-- | gcc/cfgcleanup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index cdf2b8a..a1c13f5 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -56,9 +56,9 @@ enum bb_flags { #define BB_FLAGS(bb) (enum bb_flags)(bb)->aux #define BB_SET_FLAG(bb,flag) \ - (bb)->aux = (void *)((enum bb_flags)(bb)->aux | (flag)) + (bb)->aux = (void *) (long) ((enum bb_flags)(bb)->aux | (flag)) #define BB_CLEAR_FLAG(bb,flag) \ - (bb)->aux = (void *)((enum bb_flags)(bb)->aux & ~(flag)) + (bb)->aux = (void *) (long) ((enum bb_flags)(bb)->aux & ~(flag)) #define FORWARDER_BLOCK_P(bb) (BB_FLAGS(bb) & BB_FORWARDER_BLOCK) |