From 7934ac288acfb2552bb0b06ec1f61e5820d924a4 Mon Sep 17 00:00:00 2001 From: Brian Carlstrom Date: Fri, 26 Jul 2013 10:54:15 -0700 Subject: Fix cpplint whitespace/comments issues Change-Id: Iae286862c85fb8fd8901eae1204cd6d271d69496 --- runtime/dex_instruction-inl.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'runtime/dex_instruction-inl.h') diff --git a/runtime/dex_instruction-inl.h b/runtime/dex_instruction-inl.h index 2cb5235417..6e21273358 100644 --- a/runtime/dex_instruction-inl.h +++ b/runtime/dex_instruction-inl.h @@ -131,7 +131,7 @@ inline uint16_t Instruction::VRegA_32x() const { inline uint4_t Instruction::VRegA_35c() const { DCHECK_EQ(FormatOf(Opcode()), k35c); - return InstB(); // This is labeled A in the spec. + return InstB(); // This is labeled A in the spec. } inline uint8_t Instruction::VRegA_3rc() const { @@ -295,7 +295,7 @@ inline void Instruction::GetArgs(uint32_t arg[5]) const { * method constant (or equivalent) is always in vB. */ uint16_t regList = Fetch16(2); - uint4_t count = InstB(); // This is labeled A in the spec. + uint4_t count = InstB(); // This is labeled A in the spec. /* * Copy the argument registers into the arg[] array, and @@ -310,13 +310,13 @@ inline void Instruction::GetArgs(uint32_t arg[5]) const { case 3: arg[2] = (regList >> 8) & 0x0f; case 2: arg[1] = (regList >> 4) & 0x0f; case 1: arg[0] = regList & 0x0f; break; - case 0: break; // Valid, but no need to do anything. + case 0: break; // Valid, but no need to do anything. default: LOG(ERROR) << "Invalid arg count in 35c (" << count << ")"; return; } } -} // namespace art +} // namespace art #endif // ART_RUNTIME_DEX_INSTRUCTION_INL_H_ -- cgit v1.2.3