Chromium Code Reviews| Index: runtime/vm/code_generator.cc |
| =================================================================== |
| --- runtime/vm/code_generator.cc (revision 11934) |
| +++ runtime/vm/code_generator.cc (working copy) |
| @@ -1629,6 +1629,7 @@ |
| &deopt_id, &deopt_reason, &deopt_index); |
| ASSERT(deopt_id != Isolate::kNoDeoptId); |
| uword continue_at_pc = unoptimized_code.GetDeoptBeforePcAtDeoptId(deopt_id); |
| + ASSERT(continue_at_pc != 0); |
|
Kevin Millikin (Google)
2012/09/06 12:42:42
Thank you.
Florian Schneider
2012/09/06 13:05:53
You're welcome!
|
| if (FLAG_trace_deopt) { |
| OS::Print(" -> continue at %#"Px"\n", continue_at_pc); |
| // TODO(srdjan): If we could allow GC, we could print the line where |