diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2004-10-16 00:57:01 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2004-10-15 17:57:01 -0700 |
commit | 29c431a17d8d826426cb35bad2cc3a33aa83df18 (patch) | |
tree | 12df04f109edd6592a46dc534110780a4b4e72de /gcc/toplev.c | |
parent | 85e5c2cfa4d6169ce485f1621ec3ad322beb1bd6 (diff) | |
download | gcc-29c431a17d8d826426cb35bad2cc3a33aa83df18.zip gcc-29c431a17d8d826426cb35bad2cc3a33aa83df18.tar.gz gcc-29c431a17d8d826426cb35bad2cc3a33aa83df18.tar.bz2 |
toplev.c (dump_file_name): Change type to be const.
2004-10-15 Andrew Pinski <pinskia@physics.uc.edu>
* toplev.c (dump_file_name): Change type to be const.
From-SVN: r89131
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 31dbbe1..a7fd75a 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -412,7 +412,7 @@ int warn_return_type; FILE *asm_out_file; FILE *aux_info_file; FILE *dump_file = NULL; -char *dump_file_name; +const char *dump_file_name; /* The current working directory of a translation. It's generally the directory from which compilation was initiated, but a preprocessed |