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/GenInvoke.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/compiler/codegen/GenInvoke.cc') diff --git a/src/compiler/codegen/GenInvoke.cc b/src/compiler/codegen/GenInvoke.cc index ba027f0d07..e4feb4d086 100644 --- a/src/compiler/codegen/GenInvoke.cc +++ b/src/compiler/codegen/GenInvoke.cc @@ -141,7 +141,7 @@ int nextSDCallInsn(CompilationUnit* cUnit, MIR* mir, directMethod = 0; #endif if (directCode != 0 && directMethod != 0) { - switch(state) { + switch (state) { case 0: // Get the current Method* [sets rARG0] if (directCode != (uintptr_t)-1) { loadConstant(cUnit, rINVOKE_TGT, directCode); @@ -180,7 +180,7 @@ int nextSDCallInsn(CompilationUnit* cUnit, MIR* mir, return -1; } } else { - switch(state) { + switch (state) { case 0: // Get the current Method* [sets rARG0] // TUNING: we can save a reg copy if Method* has been promoted loadCurrMethodDirect(cUnit, rARG0); @@ -245,7 +245,7 @@ int nextVCallInsn(CompilationUnit* cUnit, MIR* mir, * This is the fast path in which the target virtual method is * fully resolved at compile time. */ - switch(state) { + switch (state) { case 0: // Get "this" [set rARG1] rlArg = oatGetSrc(cUnit, mir, 0); loadValueDirectFixed(cUnit, rlArg, rARG1); -- cgit v1.2.3-59-g8ed1b