Index: benchmark/creation/node_cor.js
===================================================================
--- benchmark/creation/node_cor.js	(revision c1dfa4e1998ac7bdd877a54a01b705fe98743346)
+++ benchmark/creation/node_cor.js	(revision 27125d0c9173287e3672123b82e0967bb29c6bfa)
@@ -5,4 +5,9 @@
 
 function * coroutine() { yield }
+
+for ( var i = 0; i < times; i += 1 ) { // warm jit
+	cor = coroutine()
+}
+
 var hrstart = process.hrtime()
 for ( var i = 0; i < times; i += 1 ) {
Index: benchmark/ctxswitch/node_cor.js
===================================================================
--- benchmark/ctxswitch/node_cor.js	(revision c1dfa4e1998ac7bdd877a54a01b705fe98743346)
+++ benchmark/ctxswitch/node_cor.js	(revision 27125d0c9173287e3672123b82e0967bb29c6bfa)
@@ -10,4 +10,8 @@
 }
 cor = coroutine()
+
+for ( var i = 0; i < times; i += 1 ) { // warm git
+	cor.next();
+}
 
 var hrstart = process.hrtime()
