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/RallocUtil.cc | |
| parent | fc9e6fabed89d948fa8c0e9d673e430076712c60 (diff) | |
Fix cpplint's whitespace complaints.
Change-Id: I11fd2db2badf7bd98e7866ca2155d8ef1e112408
Diffstat (limited to 'src/compiler/codegen/RallocUtil.cc')
| -rw-r--r-- | src/compiler/codegen/RallocUtil.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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); |