Chromium Code Reviews| Index: runtime/vm/compiler.cc |
| =================================================================== |
| --- runtime/vm/compiler.cc (revision 6532) |
| +++ runtime/vm/compiler.cc (working copy) |
| @@ -128,6 +128,8 @@ |
| Parser::ParseFunction(&parsed_function); |
| parsed_function.AllocateVariables(); |
| + TimerScope timer(FLAG_compiler_stats, &CompilerStats::codegen_timer); |
|
hausner
2012/04/13 17:36:02
I don't know when exactly the constructor of varia
srdjan
2012/04/13 17:38:59
Per C++ spec it cannot be called before the instru
|
| + |
| bool is_compiled = false; |
| if (FLAG_use_new_compiler) { |
| ASSERT(!optimized); |