diff options
| author | Andreas Gampe <agampe@google.com> | 2018-09-20 13:34:35 -0700 |
|---|---|---|
| committer | Andreas Gampe <agampe@google.com> | 2018-09-20 20:32:41 -0700 |
| commit | 654698dddfd1f4d9ec0db477f4f9592d58dff039 (patch) | |
| tree | 03181d1b4fada0ec4e71156df1063331297053bc /compiler/jni | |
| parent | c74d9cbd4c7b1b5b1a4c5a6bb34e9426336bbecc (diff) | |
| download | art-654698dddfd1f4d9ec0db477f4f9592d58dff039.tar.gz art-654698dddfd1f4d9ec0db477f4f9592d58dff039.tar.bz2 art-654698dddfd1f4d9ec0db477f4f9592d58dff039.zip | |
ART: Fix bool-related types in compiler/
Avoid implicit bool conversions.
Bug: 32619234
Test: WITH_TIDY=1 mmma art
Change-Id: I364de41302f379e84980f720b2be99388a74dce2
Diffstat (limited to 'compiler/jni')
| -rw-r--r-- | compiler/jni/quick/mips/calling_convention_mips.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/jni/quick/mips/calling_convention_mips.h b/compiler/jni/quick/mips/calling_convention_mips.h index 165fc6056e..8b395a0300 100644 --- a/compiler/jni/quick/mips/calling_convention_mips.h +++ b/compiler/jni/quick/mips/calling_convention_mips.h @@ -87,7 +87,7 @@ class MipsJniCallingConvention final : public JniCallingConvention { private: // Padding to ensure longs and doubles are not split in o32. size_t padding_; - size_t use_fp_arg_registers_; + bool use_fp_arg_registers_; DISALLOW_COPY_AND_ASSIGN(MipsJniCallingConvention); }; |
