diff options
| -rw-r--r-- | flow.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5,9 +5,9 @@ extern unsigned long bb_generation; -#define REPEAT_CSE 1 -#define REPEAT_SYMBOL_CLEANUP 2 -#define REPEAT_CFG_CLEANUP 3 +#define REPEAT_CSE (1 << 0) +#define REPEAT_SYMBOL_CLEANUP (1 << 1) +#define REPEAT_CFG_CLEANUP (1 << 2) struct entrypoint; struct instruction; |
