Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Unified Diff: src/compiler/instruction.h

Issue 606403003: Refactor BasicBlock, no inheritance from GenericNode (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Attempt n+1 to address the size_t madness Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/code-generator-impl.h ('k') | src/compiler/instruction.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « src/compiler/code-generator-impl.h ('k') | src/compiler/instruction.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698