diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-11-06 15:15:31 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-11-07 13:54:29 +0000 |
commit | 52e832b1278449e62d9eb502d54d5ff18f8606ed (patch) | |
tree | 14db2240db9d0cec5551f8588a5901bd1bc081fe /compiler/optimizing/builder.h | |
parent | eb71b3fc2a18ac649dc3743f4ec28f781932030a (diff) | |
download | android_art-52e832b1278449e62d9eb502d54d5ff18f8606ed.tar.gz android_art-52e832b1278449e62d9eb502d54d5ff18f8606ed.tar.bz2 android_art-52e832b1278449e62d9eb502d54d5ff18f8606ed.zip |
Support floats and doubles in fields.
Change-Id: I19832106633405403f0461b3fe13b268abe39db3
Diffstat (limited to 'compiler/optimizing/builder.h')
-rw-r--r-- | compiler/optimizing/builder.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler/optimizing/builder.h b/compiler/optimizing/builder.h index 030f45b609..09c9a51260 100644 --- a/compiler/optimizing/builder.h +++ b/compiler/optimizing/builder.h @@ -93,10 +93,7 @@ class HGraphBuilder : public ValueObject { void UpdateLocal(int register_index, HInstruction* instruction) const; HInstruction* LoadLocal(int register_index, Primitive::Type type) const; void PotentiallyAddSuspendCheck(int32_t target_offset, uint32_t dex_offset); - - // Temporarily returns whether the compiler supports the parameters - // of the method. - bool InitializeParameters(uint16_t number_of_parameters); + void InitializeParameters(uint16_t number_of_parameters); template<typename T> void Unop_12x(const Instruction& instruction, Primitive::Type type); |