summaryrefslogtreecommitdiff
path: root/compiler/dex/quick/codegen_util.cc
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2015-04-06 09:01:34 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-04-06 09:01:35 +0000
commitdfae5e62f917b9a9ec38ebd536813a884c508eac (patch)
tree902dc5081b10af7a91b164806141ba718d48f3a9 /compiler/dex/quick/codegen_util.cc
parente57fc0f0260fcb1d08cbb720ec95c04c0f394b91 (diff)
parentb207e1473dda1730604a28db2b4fa52f2998aeae (diff)
Merge "Pass linker patches around as const."
Diffstat (limited to 'compiler/dex/quick/codegen_util.cc')
-rw-r--r--compiler/dex/quick/codegen_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/codegen_util.cc b/compiler/dex/quick/codegen_util.cc
index 483a5d06cc..f944c11931 100644
--- a/compiler/dex/quick/codegen_util.cc
+++ b/compiler/dex/quick/codegen_util.cc
@@ -1171,7 +1171,7 @@ CompiledMethod* Mir2Lir::GetCompiledMethod() {
ArrayRef<const uint8_t>(vmap_encoder.GetData()),
ArrayRef<const uint8_t>(native_gc_map_),
cfi_ref,
- ArrayRef<LinkerPatch>(patches_));
+ ArrayRef<const LinkerPatch>(patches_));
}
size_t Mir2Lir::GetMaxPossibleCompilerTemps() const {