From b25c3f6a86dc634ce44fb2849385b49465caa84d Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Mon, 26 Mar 2012 16:35:06 -0700 Subject: Fix cpplint's whitespace complaints. Change-Id: I11fd2db2badf7bd98e7866ca2155d8ef1e112408 --- src/compiler/codegen/RallocUtil.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/compiler/codegen/RallocUtil.cc') diff --git a/src/compiler/codegen/RallocUtil.cc b/src/compiler/codegen/RallocUtil.cc index 5f1f62d999..6a98d60bca 100644 --- a/src/compiler/codegen/RallocUtil.cc +++ b/src/compiler/codegen/RallocUtil.cc @@ -79,7 +79,7 @@ extern void oatInitPool(RegisterInfo* regs, int* regNums, int num) void dumpRegPool(RegisterInfo* p, int numRegs) { LOG(INFO) << "================================================"; - for (int i = 0; i < numRegs; i++){ + for (int i = 0; i < numRegs; i++) { LOG(INFO) << StringPrintf( "R[%d]: T:%d, U:%d, P:%d, p:%d, LV:%d, D:%d, SR:%d, ST:%x, EN:%x", p[i].reg, p[i].isTemp, p[i].inUse, p[i].pair, p[i].partner, @@ -434,7 +434,7 @@ RegisterInfo* allocLiveBody(RegisterInfo* p, int numRegs, int sReg) RegisterInfo* allocLive(CompilationUnit* cUnit, int sReg, int regClass) { RegisterInfo* res = NULL; - switch(regClass) { + switch (regClass) { case kAnyReg: res = allocLiveBody(cUnit->regPool->FPRegs, cUnit->regPool->numFPRegs, sReg); -- cgit v1.2.3-59-g8ed1b