Remove op_name
authorTom Tromey <tromey@adacore.com>
Fri, 28 Apr 2023 13:15:06 +0000 (07:15 -0600)
committerTom Tromey <tromey@adacore.com>
Mon, 1 May 2023 17:04:13 +0000 (11:04 -0600)
op_name is only needed in a single place, so remove it and inline it
there.

gdb/expprint.c
gdb/expression.h

index e0ec25573c25d0776916d5c5c2ecfdcce0a111f4..b996c9faf8be93a87c025375e3b3e503ac984bd2 100644 (file)
 
 #include <ctype.h>
 
-/* Default name for the standard operator OPCODE (i.e., one defined in
-   the definition of enum exp_opcode).  */
-
-const char *
-op_name (enum exp_opcode opcode)
-{
-  switch (opcode)
-    {
-    default:
-      {
-       static char buf[30];
-
-       xsnprintf (buf, sizeof (buf), "<unknown %d>", opcode);
-       return buf;
-      }
-#define OP(name)       \
-    case name:         \
-      return #name ;
-#include "std-operator.def"
-#undef OP
-    }
-}
-
 /* Meant to be used in debug sessions, so don't export it in a header file.  */
 extern void ATTRIBUTE_USED debug_exp (struct expression *exp);
 
@@ -84,7 +61,23 @@ check_objfile (const struct block *block, struct objfile *objfile)
 void
 dump_for_expression (struct ui_file *stream, int depth, enum exp_opcode op)
 {
-  gdb_printf (stream, _("%*sOperation: %s\n"), depth, "", op_name (op));
+  gdb_printf (stream, _("%*sOperation: "), depth, "");
+
+  switch (op)
+    {
+    default:
+      gdb_printf (stream, "<unknown %d>", op);
+      break;
+
+#define OP(name)       \
+    case name:         \
+      gdb_puts (#name, stream); \
+      break;
+#include "std-operator.def"
+#undef OP
+    }
+
+  gdb_puts ("\n", stream);
 }
 
 void
index c314fc24e1b99b5a11bba5b047ee74d07bf2ee75..77949ddaf4b3859c59335a4814285ba494393cab 100644 (file)
@@ -284,10 +284,6 @@ extern struct value *evaluate_subexp_do_call (expression *exp,
                                              const char *function_name,
                                              type *default_return_type);
 
-/* From expprint.c */
-
-extern const char *op_name (enum exp_opcode opcode);
-
 /* In an OP_RANGE expression, either bound could be empty, indicating
    that its value is by default that of the corresponding bound of the
    array or string.  Also, the upper end of the range can be exclusive