diff options
author | 2015-02-24 16:55:04 +0100 | |
---|---|---|
committer | 2015-03-06 13:05:47 -0800 | |
commit | 6ea651f0f4c7de4580beb2e887d86802c1ae0738 (patch) | |
tree | fd97dcbd7301892cb785ca34aee21ad86437c3b3 /compiler/dex/quick/ralloc_util.cc | |
parent | 0e242b5cad3c0b68b72f28c1e5fd3fdd4c05bfd8 (diff) |
Initial support for quick compiler on MIPS64r6.
Change-Id: I6f43027b84e4a98ea320cddb972d9cf39bf7c4f8
Diffstat (limited to 'compiler/dex/quick/ralloc_util.cc')
-rw-r--r-- | compiler/dex/quick/ralloc_util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/ralloc_util.cc b/compiler/dex/quick/ralloc_util.cc index 67fb8040f7..682fa281ac 100644 --- a/compiler/dex/quick/ralloc_util.cc +++ b/compiler/dex/quick/ralloc_util.cc @@ -1355,7 +1355,7 @@ RegLocation Mir2Lir::GetReturn(RegisterClass reg_class) { default: res = LocCReturn(); break; } Clobber(res.reg); - if (cu_->instruction_set == kMips) { + if (cu_->instruction_set == kMips || cu_->instruction_set == kMips64) { MarkInUse(res.reg); } else { LockTemp(res.reg); |