diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2015-01-21 12:32:32 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2015-01-21 18:50:25 +0000 |
commit | 988939683c26c0b1c8808fc206add6337319509a (patch) | |
tree | 876e94428276547a29c27ccf17509a42dfe7cda1 /compiler/optimizing/code_generator_x86.h | |
parent | 59add47cabce3735ccd470cd3b5dac8b112e09ab (diff) | |
download | art-988939683c26c0b1c8808fc206add6337319509a.tar.gz art-988939683c26c0b1c8808fc206add6337319509a.tar.bz2 art-988939683c26c0b1c8808fc206add6337319509a.zip |
Enable core callee-save on x64.
Will work on other architectures and FP support in other CLs.
Change-Id: I8cef0343eedc7202d206f5217fdf0349035f0e4d
Diffstat (limited to 'compiler/optimizing/code_generator_x86.h')
-rw-r--r-- | compiler/optimizing/code_generator_x86.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator_x86.h b/compiler/optimizing/code_generator_x86.h index a9086f8876..dcfeb2fb99 100644 --- a/compiler/optimizing/code_generator_x86.h +++ b/compiler/optimizing/code_generator_x86.h @@ -196,7 +196,7 @@ class CodeGeneratorX86 : public CodeGenerator { return GetLabelOf(block)->Position(); } - void SetupBlockedRegisters() const OVERRIDE; + void SetupBlockedRegisters(bool is_baseline) const OVERRIDE; Location AllocateFreeRegister(Primitive::Type type) const OVERRIDE; |