aboutsummaryrefslogtreecommitdiff
path: root/gdb/c-exp.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/c-exp.h')
-rw-r--r--gdb/c-exp.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/gdb/c-exp.h b/gdb/c-exp.h
index 58a16d5..f75b4ae 100644
--- a/gdb/c-exp.h
+++ b/gdb/c-exp.h
@@ -186,6 +186,23 @@ public:
{ return STRUCTOP_STRUCT; }
};
+/* This handles the "&&" and "||" operations for OpenCL. */
+class opencl_logical_binop_operation
+ : public tuple_holding_operation<enum exp_opcode,
+ operation_up, 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 std::get<0> (m_storage); }
+};
+
}/* namespace expr */
#endif /* C_EXP_H */