diff options
author | Michael Hayes <m.hayes@elec.canterbury.ac.nz> | 1999-09-12 10:24:02 +0000 |
---|---|---|
committer | Michael Hayes <m.hayes@gcc.gnu.org> | 1999-09-12 10:24:02 +0000 |
commit | ddf16f18413b904c1b524e9d385aabd394fa5d7b (patch) | |
tree | b8ef7f8815f2ed40387f863f7c869695360ebb3d /gcc/config/c4x/c4x.c | |
parent | 63fcb74e85e4e08d0815237748bf48f48ab092f2 (diff) | |
download | gcc-ddf16f18413b904c1b524e9d385aabd394fa5d7b.zip gcc-ddf16f18413b904c1b524e9d385aabd394fa5d7b.tar.gz gcc-ddf16f18413b904c1b524e9d385aabd394fa5d7b.tar.bz2 |
c4x.h (c4x_rpts_cycles_string, [...]): Constify char *.
* config/c4x/c4x.h (c4x_rpts_cycles_string,
c4x_cpu_version_string): Constify char *.
* config/c4x/c4x.c (c4x_rpts_cycles_string,
c4x_cpu_version_string): Likewise.
From-SVN: r29357
Diffstat (limited to 'gcc/config/c4x/c4x.c')
-rw-r--r-- | gcc/config/c4x/c4x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/c4x/c4x.c b/gcc/config/c4x/c4x.c index 58c214a..7712695 100644 --- a/gcc/config/c4x/c4x.c +++ b/gcc/config/c4x/c4x.c @@ -135,9 +135,9 @@ enum machine_mode c4x_caller_save_map[FIRST_PSEUDO_REGISTER] = struct rtx_def *c4x_compare_op0 = NULL_RTX; struct rtx_def *c4x_compare_op1 = NULL_RTX; -char *c4x_rpts_cycles_string; +const char *c4x_rpts_cycles_string; int c4x_rpts_cycles = 0; /* Max. cycles for RPTS. */ -char *c4x_cpu_version_string; +const char *c4x_cpu_version_string; int c4x_cpu_version = 40; /* CPU version C30/31/32/40/44. */ /* Pragma definitions. */ |