Fix cpplint's whitespace complaints.
Change-Id: I11fd2db2badf7bd98e7866ca2155d8ef1e112408
diff --git a/src/compiler/Dataflow.cc b/src/compiler/Dataflow.cc
index 19282d1..72e3dc4 100644
--- a/src/compiler/Dataflow.cc
+++ b/src/compiler/Dataflow.cc
@@ -1698,7 +1698,7 @@
}
int checkArray = INVALID_SREG;
int checkIndex = INVALID_SREG;
- switch(mir->dalvikInsn.opcode) {
+ switch (mir->dalvikInsn.opcode) {
case Instruction::AGET:
case Instruction::AGET_OBJECT:
case Instruction::AGET_BOOLEAN:
@@ -1792,7 +1792,7 @@
for (MIR* mir = bb->firstMIRInsn; mir; mir = mir->next) {
// Look for interesting opcodes, skip otherwise
Instruction::Code opcode = mir->dalvikInsn.opcode;
- switch(opcode) {
+ switch (opcode) {
case Instruction::AGET:
case Instruction::AGET_OBJECT:
case Instruction::AGET_BOOLEAN:
@@ -1917,7 +1917,7 @@
// Look in next basic block
struct BasicBlock* nextBB = bb->fallThrough;
for (MIR* tmir = nextBB->firstMIRInsn; tmir;
- tmir =tmir->next){
+ tmir =tmir->next) {
if ((int)tmir->dalvikInsn.opcode >= (int)kMirOpFirst) {
continue;
}
@@ -2170,7 +2170,7 @@
{
InvokeType type;
Instruction::Code opcode = mir->dalvikInsn.opcode;
- switch(opcode) {
+ switch (opcode) {
case Instruction::INVOKE_STATIC:
case Instruction::INVOKE_STATIC_RANGE:
type = kStatic;