diff options
Diffstat (limited to 'gcc/input.h')
-rw-r--r-- | gcc/input.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/input.h b/gcc/input.h index ecf8db3..fd21f34 100644 --- a/gcc/input.h +++ b/gcc/input.h @@ -77,7 +77,11 @@ extern location_t input_location; #define from_macro_expansion_at(LOC) \ ((linemap_location_from_macro_expansion_p (line_table, LOC))) -extern location_t get_pure_location (location_t loc); +static inline location_t +get_pure_location (location_t loc) +{ + return get_pure_location (line_table, loc); +} /* Get the start of any range encoded within location LOC. */ |