Index: benchmark/ctxswitch/upp_cor.cc
===================================================================
--- benchmark/ctxswitch/upp_cor.cc	(revision b4107c815918e9d1300f3381d29c2a863abf7de8)
+++ benchmark/ctxswitch/upp_cor.cc	(revision 81da70a5fabf0e44bf05c7b927e395b9e4c76239)
@@ -3,5 +3,5 @@
 #include "bench.h"
 
-_Coroutine GreatSuspender {
+_Coroutine C {
 	void main() {
 		while( true ) {
@@ -13,11 +13,10 @@
 		resume();
 	}
-};
+} c;
 int main( int argc, char * argv[] ) {
 	BENCH_START()
-	GreatSuspender s;
 	BENCH(
 		for (size_t i = 0; i < times; i++) {
-			s.do_resume();
+			c.do_resume();
 		},
 		result
