summaryrefslogtreecommitdiff
path: root/gcc/input.h
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2018-04-27 20:20:31 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2018-04-27 20:20:31 +0000
commit3b67d7e6949d199a0aadf866734332374a3eced9 (patch)
treeb3d13fc05a8b8a76aa3823876440aed5f4886d21 /gcc/input.h
parent16787011ab14619b2395f58fbc3495dc2e35ed66 (diff)
input.h: convert some macros to inline functions
gcc/ChangeLog: * input.h (in_system_header_at): Convert from macro to inline function. (from_macro_expansion_at): Likewise. (from_macro_definition_at): Likewise. From-SVN: r259727
Diffstat (limited to 'gcc/input.h')
-rw-r--r--gcc/input.h34
1 files changed, 24 insertions, 10 deletions
diff --git a/gcc/input.h b/gcc/input.h
index 38b45dcb8e0..da5451e8bd1 100644
--- a/gcc/input.h
+++ b/gcc/input.h
@@ -73,17 +73,31 @@ extern location_t input_location;
Note that this function returns 1 if LOCATION belongs to a token
that is part of a macro replacement-list defined in a system
header, but expanded in a non-system file. */
-#define in_system_header_at(LOC) \
- (linemap_location_in_system_header_p (line_table, LOC))
-/* Return a positive value if LOCATION is the locus of a token that
- comes from a macro expansion, O otherwise. */
-#define from_macro_expansion_at(LOC) \
- ((linemap_location_from_macro_expansion_p (line_table, LOC)))
-/* Return a positive value if LOCATION is the locus of a token that comes from
- a macro definition, O otherwise. This differs from from_macro_expansion_at
+
+static inline int
+in_system_header_at (location_t loc)
+{
+ return linemap_location_in_system_header_p (line_table, loc);
+}
+
+/* Return true if LOCATION is the locus of a token that
+ comes from a macro expansion, false otherwise. */
+
+static inline bool
+from_macro_expansion_at (location_t loc)
+{
+ return linemap_location_from_macro_expansion_p (line_table, loc);
+}
+
+/* Return true if LOCATION is the locus of a token that comes from
+ a macro definition, false otherwise. This differs from from_macro_expansion_at
in its treatment of macro arguments, for which this returns false. */
-#define from_macro_definition_at(LOC) \
- ((linemap_location_from_macro_definition_p (line_table, LOC)))
+
+static inline bool
+from_macro_definition_at (location_t loc)
+{
+ return linemap_location_from_macro_definition_p (line_table, loc);
+}
static inline location_t
get_pure_location (location_t loc)