summaryrefslogtreecommitdiff
path: root/gcc/sdbout.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>2000-06-06 12:08:44 +0000
committerRichard Kenner <kenner@gcc.gnu.org>2000-06-06 08:08:44 -0400
commitdf07dc5beb013b1487e8a98505dbe8f0f1a365d0 (patch)
treec65cc863cc00153b220c95248110c2faf81d3a13 /gcc/sdbout.c
parent538962e7de38bd58b7ed00709f7aeb7b3ea1314f (diff)
downloadgcc-df07dc5beb013b1487e8a98505dbe8f0f1a365d0.tar.gz
sdbout.c (struct sdb_file): NAME now const.
* sdbout.c (struct sdb_file): NAME now const. (sdbout_init): input_file_name now const. (sdbout_start_new_source_file): FILENAME now const. * sdbout.c (sdbout_init, sdbout_start_new_source_file): Reflect above. From-SVN: r34426
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r--gcc/sdbout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c
index 6433c67a2a1..f0075d56260 100644
--- a/gcc/sdbout.c
+++ b/gcc/sdbout.c
@@ -327,7 +327,7 @@ output_file_directive (asm_out_file, (FILENAME))
struct sdb_file
{
struct sdb_file *next;
- char *name;
+ const char *name;
};
/* This is the top of the stack. */
@@ -341,7 +341,7 @@ static struct sdb_file *current_file;
void
sdbout_init (asm_file, input_file_name, syms)
FILE *asm_file ATTRIBUTE_UNUSED;
- char *input_file_name ATTRIBUTE_UNUSED;
+ const char *input_file_name ATTRIBUTE_UNUSED;
tree syms ATTRIBUTE_UNUSED;
{
#ifdef MIPS_DEBUGGING_INFO
@@ -1645,7 +1645,7 @@ sdbout_label (insn)
void
sdbout_start_new_source_file (filename)
- char *filename ATTRIBUTE_UNUSED;
+ const char *filename ATTRIBUTE_UNUSED;
{
#ifdef MIPS_DEBUGGING_INFO
struct sdb_file *n = (struct sdb_file *) xmalloc (sizeof *n);