diff options
Diffstat (limited to 'gcc/c-parse.in')
-rw-r--r-- | gcc/c-parse.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-parse.in b/gcc/c-parse.in index deea8e98378..adc247a0162 100644 --- a/gcc/c-parse.in +++ b/gcc/c-parse.in @@ -75,7 +75,7 @@ end ifc %start program %union {long itype; tree ttype; enum tree_code code; - char *filename; int lineno; int ends_in_label; } + const char *filename; int lineno; int ends_in_label; } /* All identifiers that are not reserved words and are not declared typedefs in the current block */ @@ -216,7 +216,7 @@ static int compstmt_count; /* Input file and line number of the end of the body of last simple_if; used by the stmt-rule immediately after simple_if returns. */ -static char *if_stmt_file; +static const char *if_stmt_file; static int if_stmt_line; /* List of types and structure classes of the current declaration. */ |