Index: benchmark/creation/cfa_cor.cfa
===================================================================
--- benchmark/creation/cfa_cor.cfa	(revision b4107c815918e9d1300f3381d29c2a863abf7de8)
+++ benchmark/creation/cfa_cor.cfa	(revision 7dc2e01533804aacea19ccaba81be2e8599c04a6)
@@ -5,16 +5,16 @@
 
 coroutine MyCoroutine {};
-void ?{} (MyCoroutine & this) {
+void ?{}( MyCoroutine & this ) {
 #ifdef EAGER
-	resume(this);
+	resume( this );
 #endif
 }
-void main(MyCoroutine &) {}
+void main( MyCoroutine & ) {}
 
 int main( int argc, char * argv[] ) {
 	BENCH_START()
 	BENCH(
-		for ( i; times ) {
-			MyCoroutine m;
+		for ( times ) {
+			MyCoroutine c;
 		},
 		result
