diff options
| author | 2015-01-23 09:23:12 +0000 | |
|---|---|---|
| committer | 2015-01-23 09:23:12 +0000 | |
| commit | 360daa6feb2b73be8cc61bf370eef7200a210d98 (patch) | |
| tree | d751c075a491f51849c85099859513209596f7e3 /compiler/optimizing/optimizing_compiler.cc | |
| parent | 4dfe58d8f2d398963f31831a57fbd12e282e1196 (diff) | |
| parent | d97dc40d186aec46bfd318b6a2026a98241d7e9c (diff) | |
Merge "Support callee save floating point registers on x64."
Diffstat (limited to 'compiler/optimizing/optimizing_compiler.cc')
| -rw-r--r-- | compiler/optimizing/optimizing_compiler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index 1e0d65a945..5bca73003e 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -286,7 +286,7 @@ CompiledMethod* OptimizingCompiler::CompileOptimized(HGraph* graph, ArrayRef<const uint8_t>(allocator.GetMemory()), codegen->GetFrameSize(), codegen->GetCoreSpillMask(), - 0, /* FPR spill mask, unused */ + codegen->GetFpuSpillMask(), ArrayRef<const uint8_t>(stack_map)); } @@ -313,7 +313,7 @@ CompiledMethod* OptimizingCompiler::CompileBaseline( ArrayRef<const uint8_t>(allocator.GetMemory()), codegen->GetFrameSize(), codegen->GetCoreSpillMask(), - 0, /* FPR spill mask, unused */ + codegen->GetFpuSpillMask(), &src_mapping_table, AlignVectorSize(mapping_table), AlignVectorSize(vmap_table), |