summaryrefslogtreecommitdiff
path: root/src/compiler/codegen/GenInvoke.cc
diff options
context:
space:
mode:
author Elliott Hughes <enh@google.com> 2012-03-26 16:35:06 -0700
committer Elliott Hughes <enh@google.com> 2012-03-26 17:11:59 -0700
commitb25c3f6a86dc634ce44fb2849385b49465caa84d (patch)
treef359c72d821d913f78b977d8dde0fc7023afb511 /src/compiler/codegen/GenInvoke.cc
parentfc9e6fabed89d948fa8c0e9d673e430076712c60 (diff)
Fix cpplint's whitespace complaints.
Change-Id: I11fd2db2badf7bd98e7866ca2155d8ef1e112408
Diffstat (limited to 'src/compiler/codegen/GenInvoke.cc')
-rw-r--r--src/compiler/codegen/GenInvoke.cc6
1 files changed, 3 insertions, 3 deletions
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);