| Index: runtime/vm/intermediate_language.cc
|
| diff --git a/runtime/vm/intermediate_language.cc b/runtime/vm/intermediate_language.cc
|
| index db496121a2121891632312decd4853cb9286186e..2136938ac50940bb26f9c287272900ec50d8fb12 100644
|
| --- a/runtime/vm/intermediate_language.cc
|
| +++ b/runtime/vm/intermediate_language.cc
|
| @@ -1471,6 +1471,17 @@ void PhiInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| }
|
|
|
|
|
| +LocationSummary* RedefinitionInstr::MakeLocationSummary() const {
|
| + UNREACHABLE();
|
| + return NULL;
|
| +}
|
| +
|
| +
|
| +void RedefinitionInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| + UNREACHABLE();
|
| +}
|
| +
|
| +
|
| LocationSummary* ParameterInstr::MakeLocationSummary() const {
|
| UNREACHABLE();
|
| return NULL;
|
|
|