Index: src/compiler/bytecode-graph-builder.h |
diff --git a/src/compiler/bytecode-graph-builder.h b/src/compiler/bytecode-graph-builder.h |
index 251822da203a6a8a26d22410df2ce519bdc29519..9b323eb9ee6000929f7c99582cf724812f3dba12 100644 |
--- a/src/compiler/bytecode-graph-builder.h |
+++ b/src/compiler/bytecode-graph-builder.h |
@@ -173,9 +173,10 @@ class BytecodeGraphBuilder { |
// underlying bytecode. The exception handlers within the bytecode are |
// well scoped, hence will form a stack during iteration. |
struct ExceptionHandler { |
- int start_offset_; // Start offset of the handled area in the bytecode. |
- int end_offset_; // End offset of the handled area in the bytecode. |
- int handler_offset_; // Handler entry offset within the bytecode. |
+ int start_offset_; // Start offset of the handled area in the bytecode. |
+ int end_offset_; // End offset of the handled area in the bytecode. |
+ int handler_offset_; // Handler entry offset within the bytecode. |
+ int context_register_; // Index of register holding handler context. |
}; |
// Field accessors |