diff options
Diffstat (limited to 'gdb/c-exp.h')
-rw-r--r-- | gdb/c-exp.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gdb/c-exp.h b/gdb/c-exp.h index dcb4557..2d224c8 100644 --- a/gdb/c-exp.h +++ b/gdb/c-exp.h @@ -88,6 +88,23 @@ public: { return OP_OBJC_SELECTOR; } }; +/* An Objective C message call. */ +class objc_msgcall_operation + : public tuple_holding_operation<CORE_ADDR, operation_up, + std::vector<operation_up>> +{ +public: + + using tuple_holding_operation::tuple_holding_operation; + + value *evaluate (struct type *expect_type, + struct expression *exp, + enum noside noside) override; + + enum exp_opcode opcode () const override + { return OP_OBJC_MSGCALL; } +}; + }/* namespace expr */ #endif /* C_EXP_H */ |