summaryrefslogtreecommitdiff
path: root/compiler/utils/x86/assembler_x86.cc
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2014-03-28 17:44:50 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-03-28 17:44:50 +0000
commit2bc4246f3dc045036da962a326b6f0b70541c2c8 (patch)
treece462af6aafc2f830556814a45715d8eaa4f4e6c /compiler/utils/x86/assembler_x86.cc
parenta708e32a9f764a48175e705ec4bcd2201c84f492 (diff)
parentfca82208f7128fcda09b6a4743199308332558a2 (diff)
Merge "x86_64: JNI compiler"
Diffstat (limited to 'compiler/utils/x86/assembler_x86.cc')
-rw-r--r--compiler/utils/x86/assembler_x86.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/x86/assembler_x86.cc b/compiler/utils/x86/assembler_x86.cc
index db8956d43b..d242c17c8f 100644
--- a/compiler/utils/x86/assembler_x86.cc
+++ b/compiler/utils/x86/assembler_x86.cc
@@ -1388,7 +1388,7 @@ void X86Assembler::EmitGenericShift(int reg_or_opcode,
void X86Assembler::BuildFrame(size_t frame_size, ManagedRegister method_reg,
const std::vector<ManagedRegister>& spill_regs,
- const std::vector<ManagedRegister>& entry_spills) {
+ const ManagedRegisterEntrySpills& entry_spills) {
CHECK_ALIGNED(frame_size, kStackAlignment);
for (int i = spill_regs.size() - 1; i >= 0; --i) {
pushl(spill_regs.at(i).AsX86().AsCpuRegister());