You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dart_extra/big_allocation_expression_test.dart fails with the SSA backend.
Code generation is expressed as a visitor on both HInstructions (to assemble JavaScript expressions), and HBlockInformation (to assemble control flow expressions like ?: and &&).
It appears when processing control flow for ?: it walks into the 'continuation' of the expression recursively, making the stack depth be O(cfg nodes).
Adding a @noinline() annotation lets the file compile.
The text was updated successfully, but these errors were encountered:
dart_extra/big_allocation_expression_test.dart fails with the SSA backend.
Code generation is expressed as a visitor on both HInstructions (to assemble JavaScript expressions), and HBlockInformation (to assemble control flow expressions like ?: and &&).
It appears when processing control flow for ?: it walks into the 'continuation' of the expression recursively, making the stack depth be O(cfg nodes).
Adding a @noinline() annotation lets the file compile.
The text was updated successfully, but these errors were encountered: