From 169277a12ed857d0d8ba1b808e0e7e414a5d0f95 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Thu, 17 Jul 2014 09:16:19 +0100 Subject: Fix lint errors. Change-Id: I7bbaad590d84db97acfa7f8c4d093bc40e64684a --- compiler/utils/arm/assembler_thumb2.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/utils/arm/assembler_thumb2.h b/compiler/utils/arm/assembler_thumb2.h index f1ae3d805c..ee33bf23c9 100644 --- a/compiler/utils/arm/assembler_thumb2.h +++ b/compiler/utils/arm/assembler_thumb2.h @@ -31,7 +31,7 @@ namespace arm { class Thumb2Assembler FINAL : public ArmAssembler { public: - Thumb2Assembler(bool force_32bit_branches = false) + explicit Thumb2Assembler(bool force_32bit_branches = false) : force_32bit_branches_(force_32bit_branches), force_32bit_(false), it_cond_index_(kNoItCondition), @@ -419,8 +419,8 @@ class Thumb2Assembler FINAL : public ArmAssembler { void EmitShift(Register rd, Register rm, Shift shift, uint8_t amount, bool setcc = false); void EmitShift(Register rd, Register rn, Shift shift, Register rm, bool setcc = false); - bool force_32bit_branches_; // Force the assembler to use 32 bit branch instructions. - bool force_32bit_; // Force the assembler to use 32 bit thumb2 instructions. + bool force_32bit_branches_; // Force the assembler to use 32 bit branch instructions. + bool force_32bit_; // Force the assembler to use 32 bit thumb2 instructions. // IfThen conditions. Used to check that conditional instructions match the preceding IT. Condition it_conditions_[4]; -- cgit v1.2.3