aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
-rw-r--r--flow.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/flow.h b/flow.h
index ced6dcda..fe3581b5 100644
--- a/flow.h
+++ b/flow.h
@@ -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;