diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-16 00:57:01 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-16 00:57:01 +0000 |
commit | 046256159181f9a7f93c69bd4fabdeae74c62ea5 (patch) | |
tree | 12df04f109edd6592a46dc534110780a4b4e72de /gcc/toplev.c | |
parent | 358f9985c403f80c0b12de14bb2eb27b5aed9bd6 (diff) | |
download | gcc-046256159181f9a7f93c69bd4fabdeae74c62ea5.tar.gz |
2004-10-15 Andrew Pinski <pinskia@physics.uc.edu>
* toplev.c (dump_file_name): Change type to be const.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89131 138bc75d-0d04-0410-961f-82ee72b054a4
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 31dbbe1e627..a7fd75aa305 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 |