diff options
Diffstat (limited to 'compiler/optimizing/bounds_check_elimination_test.cc')
-rw-r--r-- | compiler/optimizing/bounds_check_elimination_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/bounds_check_elimination_test.cc b/compiler/optimizing/bounds_check_elimination_test.cc index b6aaab5ef5..3dcb08d195 100644 --- a/compiler/optimizing/bounds_check_elimination_test.cc +++ b/compiler/optimizing/bounds_check_elimination_test.cc @@ -652,7 +652,7 @@ static HGraph* BuildSSAGraph3(ArenaAllocator* allocator, graph->AddBlock(block); entry->AddSuccessor(block); HInstruction* new_array = new (allocator) - HNewArray(constant_10, 0, Primitive::kPrimInt); + HNewArray(constant_10, 0, Primitive::kPrimInt, kQuickAllocArray); block->AddInstruction(new_array); block->AddInstruction(new (allocator) HGoto()); |