diff options
| author | 2012-03-26 16:35:06 -0700 | |
|---|---|---|
| committer | 2012-03-26 17:11:59 -0700 | |
| commit | b25c3f6a86dc634ce44fb2849385b49465caa84d (patch) | |
| tree | f359c72d821d913f78b977d8dde0fc7023afb511 /src/compiler/codegen/arm/ArchUtility.cc | |
| parent | fc9e6fabed89d948fa8c0e9d673e430076712c60 (diff) | |
Fix cpplint's whitespace complaints.
Change-Id: I11fd2db2badf7bd98e7866ca2155d8ef1e112408
Diffstat (limited to 'src/compiler/codegen/arm/ArchUtility.cc')
| -rw-r--r-- | src/compiler/codegen/arm/ArchUtility.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compiler/codegen/arm/ArchUtility.cc b/src/compiler/codegen/arm/ArchUtility.cc index be6b44de71..4346bda058 100644 --- a/src/compiler/codegen/arm/ArchUtility.cc +++ b/src/compiler/codegen/arm/ArchUtility.cc @@ -25,7 +25,7 @@ namespace art { ArmConditionCode oatArmConditionEncoding(ConditionCode code) { ArmConditionCode res; - switch(code) { + switch (code) { case kCondEq: res = kArmCondEq; break; case kCondNe: res = kArmCondNe; break; case kCondCs: res = kArmCondCs; break; @@ -113,7 +113,7 @@ int expandImmediate(int value) { int mode = (value & 0xf00) >> 8; u4 bits = value & 0xff; - switch(mode) { + switch (mode) { case 0: return bits; case 1: @@ -156,7 +156,7 @@ std::string buildInsnString(const char* fmt, LIR* lir, DCHECK_LT(fmt, fmtEnd); DCHECK_LT((unsigned)(nc-'0'), 4U); operand = lir->operands[nc-'0']; - switch(*fmt++) { + switch (*fmt++) { case 'H': if (operand != 0) { sprintf(tbuf, ", %s %d",shiftNames[operand & 0x3], |