| Index: runtime/vm/flow_graph_builder.cc
|
| diff --git a/runtime/vm/flow_graph_builder.cc b/runtime/vm/flow_graph_builder.cc
|
| index 3b6a97d57684d3b56263777e63c502b2ea9f7a22..a7e52f8f3059f9f76461d865eaf23b1178883131 100644
|
| --- a/runtime/vm/flow_graph_builder.cc
|
| +++ b/runtime/vm/flow_graph_builder.cc
|
| @@ -1819,9 +1819,7 @@ static intptr_t GetResultCidOfConstructor(ConstructorCallNode* node) {
|
| // GrowableObjectArray. However if there is an argument the result
|
| // is not guaranteed to be a fixed size array because the argument
|
| // can be null.
|
| - if (node->arguments()->length() == 0) {
|
| - return kGrowableObjectArrayCid;
|
| - }
|
| + return kGrowableObjectArrayCid;
|
| } else {
|
| if (IsRecognizedConstructor(function, Symbols::ObjectArray()) &&
|
| (node->arguments()->length() == 1)) {
|
|
|