Index: translator/CodeGen/CodeGenerator2.cc
===================================================================
--- translator/CodeGen/CodeGenerator2.cc	(revision c11e31cbaeeeb0709ef952223453f301da13d515)
+++ translator/CodeGen/CodeGenerator2.cc	(revision a32b204359041ff1f6ef505a929495bcfe7a54f3)
@@ -553,5 +553,5 @@
 	    before << "do" ;
 	else {
-	    before << "while(" ;
+	    before << "while (" ;
 	    whileStmt->get_condition()->accept(*this );
 	    after += ")";
@@ -565,5 +565,5 @@
 
 	if ( whileStmt->get_isDoWhile() ) {
-	    before << " while(" ;
+	    before << " while (" ;
 	    whileStmt->get_condition()->accept(*this );
 	    after += ");";
Index: translator/CodeGen/CodeGenerator2.h
===================================================================
--- translator/CodeGen/CodeGenerator2.h	(revision c11e31cbaeeeb0709ef952223453f301da13d515)
+++ translator/CodeGen/CodeGenerator2.h	(revision a32b204359041ff1f6ef505a929495bcfe7a54f3)
@@ -97,5 +97,5 @@
     inline bool doSemicolon( Declaration* decl ) {
 	if ( FunctionDecl* func = dynamic_cast< FunctionDecl* >( decl ) ) {
-	    return !func->get_statements();
+	    return ! func->get_statements();
 	}
 	return true;
Index: translator/CodeGen/FixNames.cc
===================================================================
--- translator/CodeGen/FixNames.cc	(revision c11e31cbaeeeb0709ef952223453f301da13d515)
+++ translator/CodeGen/FixNames.cc	(revision a32b204359041ff1f6ef505a929495bcfe7a54f3)
@@ -32,6 +32,6 @@
 fixDWT( DeclarationWithType *dwt )
 {
-  if( dwt->get_name() != "" ) {
-    if( LinkageSpec::isDecoratable( dwt->get_linkage() ) ) {
+  if ( dwt->get_name() != "" ) {
+    if ( LinkageSpec::isDecoratable( dwt->get_linkage() ) ) {
       dwt->set_mangleName( SymTab::Mangler::mangle( dwt ) );
     }
Index: translator/CodeGen/OperatorTable.cc
===================================================================
--- translator/CodeGen/OperatorTable.cc	(revision c11e31cbaeeeb0709ef952223453f301da13d515)
+++ translator/CodeGen/OperatorTable.cc	(revision a32b204359041ff1f6ef505a929495bcfe7a54f3)
@@ -64,5 +64,5 @@
 initialize()
 {
-  for( int i = 0; i < numOps; ++i ) {
+  for ( int i = 0; i < numOps; ++i ) {
     table[ tableValues[i].inputName ] = tableValues[i];
   }
@@ -75,9 +75,9 @@
 {
   static bool init = false;
-  if( !init ) {
+  if ( ! init ) {
     initialize();
   }
   std::map< std::string, OperatorInfo >::const_iterator i = table.find( funcName );
-  if( i == table.end() ) {
+  if ( i == table.end() ) {
     return false;
   } else {
