diff options
author | 2014-05-02 08:46:00 +0100 | |
---|---|---|
committer | 2014-05-07 10:32:11 +0100 | |
commit | 804d09372cc3d80d537da1489da4a45e0e19aa5d (patch) | |
tree | b226350fdf3dc0c55a11e1615010c8475f167f90 /compiler/optimizing/ssa_test.cc | |
parent | 0095e0b8380a8802f40a21928800b9df6e11f1d7 (diff) |
Build live-in, live-out and kill sets for each block.
This information will be used when computing live ranges of
instructions.
Change-Id: I345ee833c1ccb4a8e725c7976453f6d58d350d74
Diffstat (limited to 'compiler/optimizing/ssa_test.cc')
-rw-r--r-- | compiler/optimizing/ssa_test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/optimizing/ssa_test.cc b/compiler/optimizing/ssa_test.cc index 7c3633b5e9..e4aafb7af3 100644 --- a/compiler/optimizing/ssa_test.cc +++ b/compiler/optimizing/ssa_test.cc @@ -64,8 +64,8 @@ class StringPrettyPrinter : public HPrettyPrinter { static void ReNumberInstructions(HGraph* graph) { int id = 0; - for (size_t i = 0; i < graph->GetBlocks()->Size(); i++) { - HBasicBlock* block = graph->GetBlocks()->Get(i); + for (size_t i = 0, e = graph->GetBlocks().Size(); i < e; ++i) { + HBasicBlock* block = graph->GetBlocks().Get(i); for (HInstructionIterator it(*block->GetPhis()); !it.Done(); it.Advance()) { it.Current()->SetId(id++); } @@ -147,7 +147,7 @@ TEST(SsaTest, CFG2) { TEST(SsaTest, CFG3) { // Test that we create a phi for the join block of an if control flow instruction - // when there both branches update a local. + // when both branches update a local. const char* expected = "BasicBlock 0, succ: 1\n" " 0: IntConstant 0 [4, 4]\n" |