diff options
Diffstat (limited to 'gcc/input.h')
-rw-r--r-- | gcc/input.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/input.h b/gcc/input.h index 56f6de0e0e4..8fdc7b28d92 100644 --- a/gcc/input.h +++ b/gcc/input.h @@ -37,7 +37,7 @@ extern char builtins_location_check[(BUILTINS_LOCATION < RESERVED_LOCATION_COUNT) ? 1 : -1]; extern expanded_location expand_location (source_location); -extern const char * location_get_source_line(expanded_location xloc); +extern const char *location_get_source_line (expanded_location xloc); extern expanded_location expand_location_to_spelling_point (source_location); extern source_location expansion_point_location_if_in_system_header (source_location); @@ -51,10 +51,11 @@ extern location_t input_location; #define LOCATION_LINE(LOC) ((expand_location (LOC)).line) #define LOCATION_COLUMN(LOC)((expand_location (LOC)).column) #define LOCATION_LOCUS(LOC) \ - ((IS_ADHOC_LOC(LOC)) ? get_location_from_adhoc_loc (line_table, LOC) : (LOC)) + ((IS_ADHOC_LOC (LOC)) ? get_location_from_adhoc_loc (line_table, LOC) \ + : (LOC)) #define LOCATION_BLOCK(LOC) \ ((tree) ((IS_ADHOC_LOC (LOC)) ? get_data_from_adhoc_loc (line_table, (LOC)) \ - : NULL)) + : NULL)) #define input_line LOCATION_LINE (input_location) #define input_filename LOCATION_FILE (input_location) |