diff options
| author | 2014-05-12 18:43:28 -0700 | |
|---|---|---|
| committer | 2014-05-12 18:43:28 -0700 | |
| commit | 3ec5da20f27da3bb8cea7ae29538c30c4b1549b4 (patch) | |
| tree | bb36ce97e41a5d1927525f6710bd145ad324751e | |
| parent | 048b5d0fb1643316da5b666dea9e98c954626200 (diff) | |
ART: Fix typo in ThreadOffset modification
Change-Id: Ifc3bd44a2a8442dcc242f4abcb17ae2acbc3b4e7
| -rw-r--r-- | compiler/dex/quick/gen_invoke.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/gen_invoke.cc b/compiler/dex/quick/gen_invoke.cc index 963c216e2a..7aaffcbed2 100644 --- a/compiler/dex/quick/gen_invoke.cc +++ b/compiler/dex/quick/gen_invoke.cc @@ -1759,7 +1759,7 @@ void Mir2Lir::GenInvokeNoInline(CallInfo* info) { if (Is64BitInstructionSet(cu_->instruction_set)) { call_inst = GenInvokeNoInlineCall<8>(this, info->type); } else { - call_inst = GenInvokeNoInlineCall<8>(this, info->type); + call_inst = GenInvokeNoInlineCall<4>(this, info->type); } } } |