| Index: runtime/vm/intermediate_language.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language.cc (revision 11767)
|
| +++ runtime/vm/intermediate_language.cc (working copy)
|
| @@ -112,7 +112,7 @@
|
| normal_entry_(normal_entry),
|
| catch_entries_(),
|
| start_env_(NULL),
|
| - constant_null_(new BindInstr(BindInstr::kUsed,
|
| + constant_null_(new BindInstr(Definition::kValue,
|
| new ConstantComp(Object::ZoneHandle()))),
|
| spill_slot_count_(0) {
|
| }
|
| @@ -199,7 +199,7 @@
|
| }
|
|
|
|
|
| -void BindInstr::InsertBefore(Instruction* next) {
|
| +void Definition::InsertBefore(Instruction* next) {
|
| ASSERT(previous_ == NULL);
|
| ASSERT(next_ == NULL);
|
| next_ = next;
|
| @@ -209,7 +209,7 @@
|
| }
|
|
|
|
|
| -void BindInstr::InsertAfter(Instruction* prev) {
|
| +void Definition::InsertAfter(Instruction* prev) {
|
| ASSERT(previous_ == NULL);
|
| ASSERT(next_ == NULL);
|
| previous_ = prev;
|
|
|