diff options
Diffstat (limited to 'src/compiler/Compiler.h')
| -rw-r--r-- | src/compiler/Compiler.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/Compiler.h b/src/compiler/Compiler.h index ac5e0c9b46..24bc8af169 100644 --- a/src/compiler/Compiler.h +++ b/src/compiler/Compiler.h @@ -54,6 +54,7 @@ enum debugControlVector { kDebugSlowestFieldPath, kDebugSlowestStringPath, kDebugExerciseResolveMethod, + kDebugVerifyDataflow, }; extern uint32_t compilerDebugFlags; @@ -91,6 +92,7 @@ typedef enum DataFlowAnalysisMode { kPreOrderDFSTraversal, // Depth-First-Search / Pre-Order kPostOrderDFSTraversal, // Depth-First-Search / Post-Order kPostOrderDOMTraversal, // Dominator tree / Post-Order + kReversePostOrderTraversal, // Depth-First-Search / reverse Post-Order } DataFlowAnalysisMode; struct CompilationUnit; |