Index: src/benchmark/creation/cfa_cor.c
===================================================================
--- src/benchmark/creation/cfa_cor.c	(revision 9f0b975c56f63828c0654bdcb93739755b3f66aa)
+++ src/benchmark/creation/cfa_cor.c	(revision a94b8291fd5d45ed741b2c85713c868ddc3b2bbc)
@@ -5,5 +5,9 @@
 
 coroutine MyCoroutine {};
-void ?{} (MyCoroutine & this) { prime(this); }
+void ?{} (MyCoroutine & this) {
+#ifdef EAGER
+	prime(this);
+#endif
+}
 void main(MyCoroutine & this) {}
 
