diff options
| author | 2015-09-02 19:59:19 +0000 | |
|---|---|---|
| committer | 2015-09-02 19:59:19 +0000 | |
| commit | f47869f6d29eecc66556bd213547331e10d0304e (patch) | |
| tree | 52e2c5a0227e9990aa87185c39f359aa879ffab8 /compiler/dex/quick/codegen_util.cc | |
| parent | 1208ab38356ec1a91b5fe0c509baa5a6f46d1aff (diff) | |
| parent | f9f6441c665b5ff9004d3ed55014f46d416fb1bb (diff) | |
Merge "Optimizing: Tag Arena allocations with their source."
Diffstat (limited to 'compiler/dex/quick/codegen_util.cc')
| -rw-r--r-- | compiler/dex/quick/codegen_util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/codegen_util.cc b/compiler/dex/quick/codegen_util.cc index 72754ae5d9..7082bedc5e 100644 --- a/compiler/dex/quick/codegen_util.cc +++ b/compiler/dex/quick/codegen_util.cc @@ -1115,7 +1115,7 @@ void Mir2Lir::Materialize() { CompiledMethod* Mir2Lir::GetCompiledMethod() { // Combine vmap tables - core regs, then fp regs - into vmap_table. - Leb128EncodingVector vmap_encoder; + Leb128EncodingVector<> vmap_encoder; if (frame_size_ > 0) { // Prefix the encoded data with its size. size_t size = core_vmap_table_.size() + 1 /* marker */ + fp_vmap_table_.size(); |