Chromium Code Reviews| Index: runtime/vm/flow_graph_builder.cc |
| =================================================================== |
| --- runtime/vm/flow_graph_builder.cc (revision 22436) |
| +++ runtime/vm/flow_graph_builder.cc (working copy) |
| @@ -3071,6 +3071,9 @@ |
| void EffectGraphVisitor::VisitCatchClauseNode(CatchClauseNode* node) { |
| +#if defined(TARGET_ARCH_ARM) || defined(TARGET_ARCH_MIPS) |
| + Bailout("EffectGraphVisitor::VisitCatchClauseNode (exception)"); |
|
srdjan
2013/05/07 17:34:05
Why is this bailout necessary?
Florian Schneider
2013/05/08 08:57:47
Oops, yes this is the wrong place here. I was inc
|
| +#endif |
| InlineBailout("EffectGraphVisitor::VisitCatchClauseNode (exception)"); |
| // NOTE: The implicit variables ':saved_context', ':exception_var' |
| // and ':stacktrace_var' can never be captured variables. |