diff options
author | Alan Modra <amodra@gmail.com> | 2002-06-08 07:37:16 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-06-08 07:37:16 +0000 |
commit | 5a38dc70b43becf6e5865c90d5dcaf254f5af0e1 (patch) | |
tree | 081a0466746e27ab822a066ed2d1403294344cbe /gas/config/tc-pdp11.c | |
parent | 92007e403c35d8245bfd92ee7408961bc3a6c24a (diff) | |
download | ppe42-binutils-5a38dc70b43becf6e5865c90d5dcaf254f5af0e1.tar.gz ppe42-binutils-5a38dc70b43becf6e5865c90d5dcaf254f5af0e1.zip |
* as.c: Replace CONST with const.
* write.c: Likewise.
* config/obj-coff.c: Likewise.
* config/tc-a29k.c: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-dlx.c: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-h8500.c: Likewise.
* config/tc-i370.c: Likewise.
* config/tc-i860.c: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-m68hc11.c: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m88k.c: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mips.c: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-pdp11.c: Likewise.
* config/tc-pj.c: Likewise.
* config/tc-s390.c: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-tahoe.c: Likewise.
* config/tc-tic80.c: Likewise.
* config/tc-v850.c: Likewise.
* config/tc-vax.c: Likewise.
* config/tc-w65.c: Likewise.
* config/tc-z8k.c: Likewise.
Diffstat (limited to 'gas/config/tc-pdp11.c')
-rw-r--r-- | gas/config/tc-pdp11.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gas/config/tc-pdp11.c b/gas/config/tc-pdp11.c index f79c1d5995..92023d130a 100644 --- a/gas/config/tc-pdp11.c +++ b/gas/config/tc-pdp11.c @@ -75,25 +75,25 @@ int asm_option[ASM_OPT_NUM]; /* These chars start a comment anywhere in a source file (except inside another comment */ -CONST char comment_chars[] = "#/"; +const char comment_chars[] = "#/"; /* These chars only start a comment at the beginning of a line. */ -CONST char line_comment_chars[] = "#/"; +const char line_comment_chars[] = "#/"; -CONST char line_separator_chars[] = ";"; +const char line_separator_chars[] = ";"; /* Chars that can be used to separate mant from exp in floating point nums */ -CONST char EXP_CHARS[] = "eE"; +const char EXP_CHARS[] = "eE"; /* Chars that mean this number is a floating point constant */ /* as in 0f123.456 */ /* or 0H1.234E-12 (see exp chars above) */ -CONST char FLT_CHARS[] = "dDfF"; +const char FLT_CHARS[] = "dDfF"; void pseudo_even (int); void pseudo_bss (int); -CONST pseudo_typeS md_pseudo_table[] = +const pseudo_typeS md_pseudo_table[] = { { "bss", pseudo_bss, 0 }, { "even", pseudo_even, 0 }, @@ -617,7 +617,7 @@ void md_assemble (instruction_string) char *instruction_string; { - CONST struct pdp11_opcode *op; + const struct pdp11_opcode *op; struct pdp11_code insn, op1, op2; int error; int size; @@ -1019,8 +1019,8 @@ md_convert_frag (headers, seg, fragP) { } -CONST int md_short_jump_size = 2; -CONST int md_long_jump_size = 4; +const int md_short_jump_size = 2; +const int md_long_jump_size = 4; void md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol) @@ -1289,7 +1289,7 @@ set_machine_model (arg) return 0; } -CONST char *md_shortopts = "m:"; +const char *md_shortopts = "m:"; struct option md_longopts[] = { @@ -1364,9 +1364,9 @@ enum struct { - CONST char *pattern; + const char *pattern; int opt; - CONST char *description; + const char *description; } options; static struct options extension_opts[] = @@ -1433,7 +1433,7 @@ static struct options model_opts[] = struct { - CONST char *title; + const char *title; struct options *opts; int num; } all_opts[] = @@ -1508,7 +1508,7 @@ parse_match (char *arg, char *pattern) int fprint_opt (stream, pattern) FILE *stream; - CONST char *pattern; + const char *pattern; { int n; |