Remove eval_op_concat
authorTom Tromey <tromey@adacore.com>
Wed, 9 Mar 2022 21:35:10 +0000 (14:35 -0700)
committerTom Tromey <tromey@adacore.com>
Wed, 16 Mar 2022 15:28:13 +0000 (09:28 -0600)
eval_op_concat has code to search for an operator overload of
BINOP_CONCAT.  However, the operator overloading code is specific to
C++, which does not have this operator.  And,
binop_types_user_defined_p rejects this case right at the start, and
value_x_binop does not handle this case.  I think this code has been
dead for a very long time.  This patch removes it and hoists the
remaining call into concatenation::evaluate, removing eval_op_concat
entirely.

gdb/eval.c
gdb/expop.h
gdb/valarith.c

index b7b8915fa89cd618f5980a034a22b1634c881454..266a4f7699f61c61f898fad9ccdff3844b8a2a0a 100644 (file)
@@ -1106,18 +1106,6 @@ eval_op_objc_selector (struct type *expect_type, struct expression *exp,
                             lookup_child_selector (exp->gdbarch, sel));
 }
 
-/* Helper function that implements the body of BINOP_CONCAT.  */
-
-struct value *
-eval_op_concat (struct type *expect_type, struct expression *exp,
-               enum noside noside, struct value *arg1, struct value *arg2)
-{
-  if (binop_user_defined_p (BINOP_CONCAT, arg1, arg2))
-    return value_x_binop (arg1, arg2, BINOP_CONCAT, OP_NULL, noside);
-  else
-    return value_concat (arg1, arg2);
-}
-
 /* A helper function for TERNOP_SLICE.  */
 
 struct value *
index 1592568a85794e9dcf5dfea94cc6c17acd87ebb2..d903ab0bb7ea5af7c7c5f51fc2ea033ab64425b9 100644 (file)
@@ -83,10 +83,6 @@ extern struct value *eval_op_member (struct type *expect_type,
                                     struct expression *exp,
                                     enum noside noside,
                                     struct value *arg1, struct value *arg2);
-extern struct value *eval_op_concat (struct type *expect_type,
-                                    struct expression *exp,
-                                    enum noside noside,
-                                    struct value *arg1, struct value *arg2);
 extern struct value *eval_op_add (struct type *expect_type,
                                  struct expression *exp,
                                  enum noside noside,
@@ -1158,7 +1154,7 @@ public:
       = std::get<0> (m_storage)->evaluate_with_coercion (exp, noside);
     value *rhs
       = std::get<1> (m_storage)->evaluate_with_coercion (exp, noside);
-    return eval_op_concat (expect_type, exp, noside, lhs, rhs);
+    return value_concat (lhs, rhs);
   }
 
   enum exp_opcode opcode () const override
index e13db10ab55f9b3b9a1d6ccc73281f137baad2d7..791c1cd9a069b80df2ef5503cb3f87391307cc5e 100644 (file)
@@ -252,7 +252,7 @@ int
 binop_types_user_defined_p (enum exp_opcode op,
                            struct type *type1, struct type *type2)
 {
-  if (op == BINOP_ASSIGN || op == BINOP_CONCAT)
+  if (op == BINOP_ASSIGN)
     return 0;
 
   type1 = check_typedef (type1);