| Index: runtime/vm/locations.cc
|
| diff --git a/runtime/vm/locations.cc b/runtime/vm/locations.cc
|
| index 7447760c5b180d9c02cd4e3dbc27b961adf6ebf5..6a450d5b2248cfdac9ebf9668c7a2df4bb95c247 100644
|
| --- a/runtime/vm/locations.cc
|
| +++ b/runtime/vm/locations.cc
|
| @@ -11,12 +11,10 @@ namespace dart {
|
|
|
| LocationSummary* LocationSummary::Make(intptr_t input_count,
|
| Location out,
|
| - ContainsCall contains_call,
|
| - ContainsBranch contains_branch) {
|
| + ContainsCall contains_call) {
|
| LocationSummary* summary = new LocationSummary(input_count,
|
| 0,
|
| - contains_call,
|
| - contains_branch);
|
| + contains_call);
|
| for (intptr_t i = 0; i < input_count; i++) {
|
| summary->set_in(i, Location::RequiresRegister());
|
| }
|
|
|