ARudik / phc

Automatically exported from code.google.com/p/phc
0 stars 0 forks source link

Test which optimizations are useful early #77

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
It is not clear whether some peephole optimizations are useful. For
example, converting:

print ($str."\n");
to
print ($str); print ("\n);

The results differ based on the level of optimization of the PHP run-time,
and which version it is. We should test at configure/install/compile (?)
time to see which way to optimize.

Original issue reported on code.google.com by paul.biggar on 13 Sep 2008 at 10:03