Fix GDB build with GCC 4.8.2
authorTom Tromey <tromey@adacore.com>
Mon, 15 Mar 2021 14:59:17 +0000 (08:59 -0600)
committerTom Tromey <tromey@adacore.com>
Mon, 15 Mar 2021 17:30:51 +0000 (11:30 -0600)
PR build/27579 points out that the expression rewrite series
introduced a build failure with GCC 4.8.2.  The bug is that there's no
std::hash specialization for enum exp_opcode.  This patch fixes the
problem by using gdb::hash_enum.

2021-03-15  Tom Tromey  <tromey@adacore.com>

PR build/27579:
* rust-exp.y (maker_map): Use gdb::hash_enum.
* stap-probe.c (stap_maker_map): Use gdb::hash_enum.

gdb/ChangeLog
gdb/rust-exp.y
gdb/stap-probe.c

index 2315d5bc6ea124033dd0da64813276ed5052f6ca..0ac6b29443e37015621812722e6b0e53a072cb50 100644 (file)
@@ -1,3 +1,9 @@
+2021-03-15  Tom Tromey  <tromey@adacore.com>
+
+       PR build/27579:
+       * rust-exp.y (maker_map): Use gdb::hash_enum.
+       * stap-probe.c (stap_maker_map): Use gdb::hash_enum.
+
 2021-03-15  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * dwarf2/read.c (create_debug_type_hash_table): Remove colon at
index 9a5bdd7a836cc30eac78682ad03f2e01568a243f..0400340988757ef24a7102712261420c2536948b 100644 (file)
@@ -43,6 +43,7 @@
 #include "gdbarch.h"
 #include "rust-exp.h"
 #include <unordered_map>
+#include "gdbsupport/hash_enum.h"
 
 #define GDB_YY_REMAP_PREFIX rust
 #include "yy-remap.h"
@@ -2202,7 +2203,8 @@ typedef expr::operation_up binop_maker_ftype (expr::operation_up &&,
 /* Map from an expression opcode to a function that will create an
    instance of the appropriate operation subclass.  Only binary
    operations are handled this way.  */
-static std::unordered_map<exp_opcode, binop_maker_ftype *> maker_map;
+static std::unordered_map<exp_opcode, binop_maker_ftype *,
+                         gdb::hash_enum<exp_opcode>> maker_map;
 
 /* Lower a rust_op to a gdb expression.  STATE is the parser state.
    OPERATION is the operation to lower.  TOP is a pointer to the
index 5995c2824dc2ba2fe198ca4c906c32548aa814a6..7f6d98a8ef2195e2133e63511df2e4d325558d79 100644 (file)
@@ -38,6 +38,7 @@
 #include "elf-bfd.h"
 #include "expop.h"
 #include <unordered_map>
+#include "gdbsupport/hash_enum.h"
 
 #include <ctype.h>
 
@@ -436,7 +437,8 @@ typedef expr::operation_up binop_maker_ftype (expr::operation_up &&,
                                              expr::operation_up &&);
 /* Map from an expression opcode to a function that can create a
    binary operation of that type.  */
-static std::unordered_map<exp_opcode, binop_maker_ftype *> stap_maker_map;
+static std::unordered_map<exp_opcode, binop_maker_ftype *,
+                         gdb::hash_enum<exp_opcode>> stap_maker_map;
 
 /* Helper function to create a binary operation.  */
 static expr::operation_up