Index: benchmark/ctxswitch/upp_cor.cc
===================================================================
--- benchmark/ctxswitch/upp_cor.cc	(revision b4107c815918e9d1300f3381d29c2a863abf7de8)
+++ benchmark/ctxswitch/upp_cor.cc	(revision e068c8a8da15b590c9ee6dc1bf9fefcffcc2b1dc)
@@ -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
