diff options
author | Tom Tromey <tromey@adacore.com> | 2024-04-18 09:28:29 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2024-12-18 10:00:44 -0700 |
commit | cc7096403214782a59b6c8243cd7570b015e0075 (patch) | |
tree | f12cdeb0c9166cf7fcd6a047b6e2e140044e18aa /gdb/compile | |
parent | 0dad0d7b084cb1ea771da0be579ef6ea0a7725f6 (diff) | |
download | binutils-cc7096403214782a59b6c8243cd7570b015e0075.zip binutils-cc7096403214782a59b6c8243cd7570b015e0075.tar.gz binutils-cc7096403214782a59b6c8243cd7570b015e0075.tar.bz2 |
Run check-include-guards.py
This patch is the result of running check-include-guards.py on the
current tree. Running it a second time causes no changes.
Reviewed-By: Tom de Vries <tdevries@suse.de>
Diffstat (limited to 'gdb/compile')
-rw-r--r-- | gdb/compile/compile-c.h | 6 | ||||
-rw-r--r-- | gdb/compile/compile-cplus.h | 6 | ||||
-rw-r--r-- | gdb/compile/compile-internal.h | 6 | ||||
-rw-r--r-- | gdb/compile/compile-object-load.h | 6 | ||||
-rw-r--r-- | gdb/compile/compile-object-run.h | 6 | ||||
-rw-r--r-- | gdb/compile/compile.h | 6 | ||||
-rw-r--r-- | gdb/compile/gcc-c-plugin.h | 6 | ||||
-rw-r--r-- | gdb/compile/gcc-cp-plugin.h | 6 |
8 files changed, 24 insertions, 24 deletions
diff --git a/gdb/compile/compile-c.h b/gdb/compile/compile-c.h index 4670d67..b77b7aa 100644 --- a/gdb/compile/compile-c.h +++ b/gdb/compile/compile-c.h @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef COMPILE_COMPILE_C_H -#define COMPILE_COMPILE_C_H +#ifndef GDB_COMPILE_COMPILE_C_H +#define GDB_COMPILE_COMPILE_C_H #include "compile/compile.h" #include "gdbsupport/enum-flags.h" @@ -93,4 +93,4 @@ extern std::string c_get_range_decl_name (const struct dynamic_prop *prop); extern gdb::unique_xmalloc_ptr<char> c_symbol_substitution_name (struct symbol *sym); -#endif /* COMPILE_COMPILE_C_H */ +#endif /* GDB_COMPILE_COMPILE_C_H */ diff --git a/gdb/compile/compile-cplus.h b/gdb/compile/compile-cplus.h index a714b6d..d3b2d3e 100644 --- a/gdb/compile/compile-cplus.h +++ b/gdb/compile/compile-cplus.h @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef COMPILE_COMPILE_CPLUS_H -#define COMPILE_COMPILE_CPLUS_H +#ifndef GDB_COMPILE_COMPILE_CPLUS_H +#define GDB_COMPILE_COMPILE_CPLUS_H #include "compile/compile.h" #include "gdbsupport/enum-flags.h" @@ -204,4 +204,4 @@ private: enum gcc_cp_symbol_kind get_method_access_flag (const struct type *type, int fni, int num); -#endif /* COMPILE_COMPILE_CPLUS_H */ +#endif /* GDB_COMPILE_COMPILE_CPLUS_H */ diff --git a/gdb/compile/compile-internal.h b/gdb/compile/compile-internal.h index 666406b..f4cc9ee 100644 --- a/gdb/compile/compile-internal.h +++ b/gdb/compile/compile-internal.h @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef COMPILE_COMPILE_INTERNAL_H -#define COMPILE_COMPILE_INTERNAL_H +#ifndef GDB_COMPILE_COMPILE_INTERNAL_H +#define GDB_COMPILE_COMPILE_INTERNAL_H #include "gcc-c-interface.h" #include "gdbsupport/gdb-hashtab.h" @@ -80,4 +80,4 @@ private: std::string m_object_file; }; -#endif /* COMPILE_COMPILE_INTERNAL_H */ +#endif /* GDB_COMPILE_COMPILE_INTERNAL_H */ diff --git a/gdb/compile/compile-object-load.h b/gdb/compile/compile-object-load.h index 83665b5..463aa08 100644 --- a/gdb/compile/compile-object-load.h +++ b/gdb/compile/compile-object-load.h @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef COMPILE_COMPILE_OBJECT_LOAD_H -#define COMPILE_COMPILE_OBJECT_LOAD_H +#ifndef GDB_COMPILE_COMPILE_OBJECT_LOAD_H +#define GDB_COMPILE_COMPILE_OBJECT_LOAD_H #include "compile-internal.h" #include "compile.h" @@ -95,4 +95,4 @@ extern compile_module_up compile_object_load (const compile_file_names &fnames, enum compile_i_scope_types scope, void *scope_data); -#endif /* COMPILE_COMPILE_OBJECT_LOAD_H */ +#endif /* GDB_COMPILE_COMPILE_OBJECT_LOAD_H */ diff --git a/gdb/compile/compile-object-run.h b/gdb/compile/compile-object-run.h index 5d9f23c..64b2bd9 100644 --- a/gdb/compile/compile-object-run.h +++ b/gdb/compile/compile-object-run.h @@ -14,11 +14,11 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef COMPILE_COMPILE_OBJECT_RUN_H -#define COMPILE_COMPILE_OBJECT_RUN_H +#ifndef GDB_COMPILE_COMPILE_OBJECT_RUN_H +#define GDB_COMPILE_COMPILE_OBJECT_RUN_H #include "compile-object-load.h" extern void compile_object_run (compile_module_up &&module); -#endif /* COMPILE_COMPILE_OBJECT_RUN_H */ +#endif /* GDB_COMPILE_COMPILE_OBJECT_RUN_H */ diff --git a/gdb/compile/compile.h b/gdb/compile/compile.h index 1f57d67..7d03d3c 100644 --- a/gdb/compile/compile.h +++ b/gdb/compile/compile.h @@ -15,8 +15,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef COMPILE_COMPILE_H -#define COMPILE_COMPILE_H +#ifndef GDB_COMPILE_COMPILE_H +#define GDB_COMPILE_COMPILE_H #include "gcc-c-interface.h" #include "gdbsupport/unordered_map.h" @@ -262,4 +262,4 @@ extern void compile_print_value (struct value *val, void *data_voidp); /* Command element for the 'compile' command. */ extern cmd_list_element *compile_cmd_element; -#endif /* COMPILE_COMPILE_H */ +#endif /* GDB_COMPILE_COMPILE_H */ diff --git a/gdb/compile/gcc-c-plugin.h b/gdb/compile/gcc-c-plugin.h index 4008807..d12472f 100644 --- a/gdb/compile/gcc-c-plugin.h +++ b/gdb/compile/gcc-c-plugin.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef COMPILE_GCC_C_PLUGIN_H -#define COMPILE_GCC_C_PLUGIN_H +#ifndef GDB_COMPILE_GCC_C_PLUGIN_H +#define GDB_COMPILE_GCC_C_PLUGIN_H #include "compile-internal.h" @@ -68,4 +68,4 @@ private: struct gcc_c_context *m_context; }; -#endif /* COMPILE_GCC_C_PLUGIN_H */ +#endif /* GDB_COMPILE_GCC_C_PLUGIN_H */ diff --git a/gdb/compile/gcc-cp-plugin.h b/gdb/compile/gcc-cp-plugin.h index cf8ccd9..8f36993 100644 --- a/gdb/compile/gcc-cp-plugin.h +++ b/gdb/compile/gcc-cp-plugin.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef COMPILE_GCC_CP_PLUGIN_H -#define COMPILE_GCC_CP_PLUGIN_H +#ifndef GDB_COMPILE_GCC_CP_PLUGIN_H +#define GDB_COMPILE_GCC_CP_PLUGIN_H /* A class representing the GCC C++ plug-in. */ @@ -87,4 +87,4 @@ private: struct gcc_cp_context *m_context; }; -#endif /* COMPILE_GCC_CP_PLUGIN_H */ +#endif /* GDB_COMPILE_GCC_CP_PLUGIN_H */ |