aboutsummaryrefslogtreecommitdiff
path: root/gdb/macroscope.h
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2023-02-08 15:36:23 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2023-02-08 15:46:02 -0500
commitc583a2520616c2736cffc389c89a48b159366e6c (patch)
treeb4925f26506fcee96c16119431c01760f05db95d /gdb/macroscope.h
parentca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff)
downloadbinutils-users/simark/clang-format.zip
binutils-users/simark/clang-format.tar.gz
binutils-users/simark/clang-format.tar.bz2
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
Diffstat (limited to 'gdb/macroscope.h')
-rw-r--r--gdb/macroscope.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/gdb/macroscope.h b/gdb/macroscope.h
index ad9eddf..c2593c5 100644
--- a/gdb/macroscope.h
+++ b/gdb/macroscope.h
@@ -23,25 +23,23 @@
#include "macrotab.h"
#include "symtab.h"
-
/* The table of macros defined by the user. */
extern struct macro_table *macro_user_macros;
/* All the information we need to decide which macro definitions are
in scope: a source file (either a main source file or an
#inclusion), and a line number in that file. */
-struct macro_scope {
+struct macro_scope
+{
struct macro_source_file *file;
int line;
};
-
/* Return a `struct macro_scope' object corresponding to the symtab
and line given in SAL. If we have no macro information for that
location, or if SAL's pc is zero, return zero. */
-gdb::unique_xmalloc_ptr<struct macro_scope> sal_macro_scope
- (struct symtab_and_line sal);
-
+gdb::unique_xmalloc_ptr<struct macro_scope>
+sal_macro_scope (struct symtab_and_line sal);
/* Return a `struct macro_scope' object representing just the
user-defined macros. */