diff options
| author | 2015-08-08 00:14:42 +0000 | |
|---|---|---|
| committer | 2015-08-08 00:14:42 +0000 | |
| commit | fc29856047d90d8f446d73b576c0c18de7a1380f (patch) | |
| tree | abb26f7c4b2e7623260018110eb5f4b8c9704bb3 /compiler | |
| parent | e6b307a833d3a0ba4327004c2a286680e01eae3b (diff) | |
| parent | 067f1ed7816cf4eb5d6258ca31b387ddb2073ab7 (diff) | |
Merge "ART: Remove TODO in BitVector"
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/dex/gvn_dead_code_elimination.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/gvn_dead_code_elimination.cc b/compiler/dex/gvn_dead_code_elimination.cc index 044989e2a9..d29b865ce9 100644 --- a/compiler/dex/gvn_dead_code_elimination.cc +++ b/compiler/dex/gvn_dead_code_elimination.cc @@ -74,7 +74,7 @@ inline void GvnDeadCodeElimination::MIRData::RemovePrevChange(int v_reg, MIRData GvnDeadCodeElimination::VRegChains::VRegChains(uint32_t num_vregs, ScopedArenaAllocator* alloc) : num_vregs_(num_vregs), vreg_data_(alloc->AllocArray<VRegValue>(num_vregs, kArenaAllocMisc)), - vreg_high_words_(num_vregs, false, Allocator::GetNoopAllocator(), + vreg_high_words_(false, Allocator::GetNoopAllocator(), BitVector::BitsToWords(num_vregs), alloc->AllocArray<uint32_t>(BitVector::BitsToWords(num_vregs))), mir_data_(alloc->Adapter()) { |