The Instrumentation added to an empty for (e.g. for
(;;) {} ) loop is as follows:
for(;&& <some instrumentation>;) {}
this causes a build failure on instrumented code.
The work around is to simply change your original
code to the following:
for (;true;) {}