Index: src/compiler/instruction.h |
diff --git a/src/compiler/instruction.h b/src/compiler/instruction.h |
index f8ad55e0e6f9eac0c582fb23ffa63036758cd2c3..7cf85d1091ddf96fce6c8dbe1e1a707f5bd4f5e9 100644 |
--- a/src/compiler/instruction.h |
+++ b/src/compiler/instruction.h |
@@ -839,10 +839,10 @@ class InstructionSequence FINAL { |
} |
BasicBlock* GetContainingLoop(BasicBlock* block) { |
- return block->loop_header_; |
+ return block->loop_header(); |
} |
- int GetLoopEnd(BasicBlock* block) const { return block->loop_end_; } |
+ int GetLoopEnd(BasicBlock* block) const { return block->loop_end(); } |
BasicBlock* GetBasicBlock(int instruction_index); |