| Index: runtime/vm/intermediate_language.h
|
| ===================================================================
|
| --- runtime/vm/intermediate_language.h (revision 23136)
|
| +++ runtime/vm/intermediate_language.h (working copy)
|
| @@ -798,6 +798,11 @@
|
| // Insert this instruction after 'prev' after use lists are computed.
|
| void InsertAfter(Instruction* prev);
|
|
|
| + // Append an instruction to the current one and return the tail.
|
| + // This function updated def-use chains of the newly appended
|
| + // instruction.
|
| + Instruction* AppendInstruction(Instruction* tail);
|
| +
|
| // Returns true if CSE and LICM are allowed for this instruction.
|
| virtual bool AllowsCSE() const {
|
| return false;
|
|
|