Don't include block.h from expop.h
authorTom Tromey <tom@tromey.com>
Sat, 21 Jan 2023 21:00:05 +0000 (14:00 -0700)
committerTom Tromey <tom@tromey.com>
Wed, 8 Feb 2023 17:58:13 +0000 (10:58 -0700)
expop.h needs block.h for a single inline function.  However, I don't
think most of the check_objfile functions need to be defined in the
header (just the templates).  This patch moves the one offending
function and removes the include.

gdb/expop.h
gdb/expprint.c

index 9e6ab0dd244a79cff907ae93303941f863af1af6..bfe55e4f2fd092e240b725e959964e1363f5758a 100644 (file)
@@ -20,7 +20,6 @@
 #ifndef EXPOP_H
 #define EXPOP_H
 
-#include "block.h"
 #include "c-lang.h"
 #include "cp-abi.h"
 #include "expression.h"
@@ -229,11 +228,8 @@ check_objfile (struct symbol *sym, struct objfile *objfile)
   return check_objfile (sym->objfile (), objfile);
 }
 
-static inline bool
-check_objfile (const struct block *block, struct objfile *objfile)
-{
-  return check_objfile (block_objfile (block), objfile);
-}
+extern bool check_objfile (const struct block *block,
+                          struct objfile *objfile);
 
 static inline bool
 check_objfile (const block_symbol &sym, struct objfile *objfile)
index b70645fac928b5929a15325d9568157f86b095d4..63004f7f1066adf41be2b56560e79700e31694d1 100644 (file)
@@ -75,6 +75,12 @@ debug_exp (struct expression *exp)
 namespace expr
 {
 
+bool
+check_objfile (const struct block *block, struct objfile *objfile)
+{
+  return check_objfile (block_objfile (block), objfile);
+}
+
 void
 dump_for_expression (struct ui_file *stream, int depth, enum exp_opcode op)
 {