| Index: runtime/vm/intermediate_language.h
|
| diff --git a/runtime/vm/intermediate_language.h b/runtime/vm/intermediate_language.h
|
| index 2678a881d2ddeb2c353a1064a46eacfe20ef8def..7ad44910141fb4d6f6bc227b57c3763792679e36 100644
|
| --- a/runtime/vm/intermediate_language.h
|
| +++ b/runtime/vm/intermediate_language.h
|
| @@ -1706,7 +1706,7 @@ FOR_EACH_INSTRUCTION(FORWARD_DECLARATION)
|
|
|
| // Functions required in all concrete instruction classes.
|
| #define DECLARE_INSTRUCTION(type) \
|
| - virtual Instruction* Accept(FlowGraphVisitor* visitor); \
|
| + virtual void Accept(FlowGraphVisitor* visitor); \
|
| virtual bool Is##type() const { return true; } \
|
| virtual type##Instr* As##type() { return this; } \
|
| virtual intptr_t InputCount() const; \
|
| @@ -1748,7 +1748,7 @@ class Instruction : public ZoneAllocated {
|
| virtual void SetInputAt(intptr_t i, Value* value) = 0;
|
|
|
| // Visiting support.
|
| - virtual Instruction* Accept(FlowGraphVisitor* visitor) = 0;
|
| + virtual void Accept(FlowGraphVisitor* visitor) = 0;
|
|
|
| Instruction* previous() const { return previous_; }
|
| void set_previous(Instruction* instr) {
|
|
|