Rename split_style::DOT
authorTom Tromey <tromey@adacore.com>
Thu, 31 Aug 2023 13:33:34 +0000 (07:33 -0600)
committerTom Tromey <tromey@adacore.com>
Fri, 15 Sep 2023 13:39:47 +0000 (07:39 -0600)
This renames split_style::DOT, to avoid name clashes when building gdb
with an old version of Bison (2.3, the version available on macOS).

In particular the error looks like:

./split-name.h:34:3: error: expected identifier
  DOT,
  ^
m2-exp.c:163:13: note: expanded from macro 'DOT'

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=30286

gdb/dwarf2/cooked-index.c
gdb/split-name.c
gdb/split-name.h
gdb/symtab.h

index d6531260c865910d2a68d9b5c8e84f8c6dfb9f08..58ea541a5c93abfc22f65e83d1abac0d9d949244 100644 (file)
@@ -267,7 +267,7 @@ cooked_index_shard::handle_gnat_encoded_entry (cooked_index_entry *entry,
   if (canonical.empty ())
     return {};
   std::vector<gdb::string_view> names = split_name (canonical.c_str (),
-                                                   split_style::DOT);
+                                                   split_style::DOT_STYLE);
   gdb::string_view tail = names.back ();
   names.pop_back ();
 
index a50a6fa4946652a43a49833c3be85d62b19c0f3c..0253b3cf675ef925a5d612b379b7cab8bac3afdf 100644 (file)
@@ -58,7 +58,7 @@ split_name (const char *name, split_style style)
        }
       break;
 
-    case split_style::DOT:
+    case split_style::DOT_STYLE:
       /* D and Go-style names.  */
       for (const char *iter = strchr (name, '.');
           iter != nullptr;
index 47896cc4406fa3dc14c66b7f15a0913a7dda4a53..7648cf9b90085bf446e9b164d0042bec9ee4dc4f 100644 (file)
@@ -30,8 +30,9 @@ enum class split_style
   NONE,
   /* C++ style, with "::" and template parameter intelligence.  */
   CXX,
-  /* Split at ".".  Used by Ada, Go, D.  */
-  DOT,
+  /* Split at ".".  Used by Ada, Go, D.  This has a funny name to work
+     around a bug in Bison 2.3, which is used on macOS.  */
+  DOT_STYLE,
   /* Split at "__".  Used by Ada encoded names.  */
   UNDERSCORE,
 };
index ca3b1a4a0b6fc3dac6ca8c6ff7846b2b7219e55a..8f587807ff9c061d3bbd1ac19c4e28cad3aa8553 100644 (file)
@@ -305,7 +305,7 @@ class lookup_name_info final
        break;
       case language_d:
       case language_go:
-       style = split_style::DOT;
+       style = split_style::DOT_STYLE;
        break;
       }
     return ::split_name (language_lookup_name (lang), style);