| Index: runtime/vm/intermediate_language.cc
|
| diff --git a/runtime/vm/intermediate_language.cc b/runtime/vm/intermediate_language.cc
|
| index 43c10c6227bac8f0770b1ebc52d3ae3297b51a49..689d535ed0c1952a3edcbfb336bd628f3927fdd5 100644
|
| --- a/runtime/vm/intermediate_language.cc
|
| +++ b/runtime/vm/intermediate_language.cc
|
| @@ -126,6 +126,12 @@ bool Instruction::Equals(Instruction* other) const {
|
| }
|
|
|
|
|
| +void Instruction::Unsupported(FlowGraphCompiler* compiler) {
|
| + compiler->Bailout(ToCString());
|
| + UNREACHABLE();
|
| +}
|
| +
|
| +
|
| bool Value::Equals(Value* other) const {
|
| return definition() == other->definition();
|
| }
|
|
|