summaryrefslogtreecommitdiffstats
path: root/runtime/dex_instruction-inl.h
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-26 10:54:15 -0700
committerBrian Carlstrom <bdc@google.com>2013-07-26 11:55:10 -0700
commit7934ac288acfb2552bb0b06ec1f61e5820d924a4 (patch)
tree43f3acd8af7fd34d4ae7b64f6e06bb8429d74bb8 /runtime/dex_instruction-inl.h
parentfb331d7ca004f39608fcfdae49d38df90c702ea9 (diff)
downloadandroid_art-7934ac288acfb2552bb0b06ec1f61e5820d924a4.tar.gz
android_art-7934ac288acfb2552bb0b06ec1f61e5820d924a4.tar.bz2
android_art-7934ac288acfb2552bb0b06ec1f61e5820d924a4.zip
Fix cpplint whitespace/comments issues
Change-Id: Iae286862c85fb8fd8901eae1204cd6d271d69496
Diffstat (limited to 'runtime/dex_instruction-inl.h')
-rw-r--r--runtime/dex_instruction-inl.h8
1 files changed, 4 insertions, 4 deletions
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_