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-i370.c | |
parent | 92007e403c35d8245bfd92ee7408961bc3a6c24a (diff) | |
download | gdb-5a38dc70b43becf6e5865c90d5dcaf254f5af0e1.zip gdb-5a38dc70b43becf6e5865c90d5dcaf254f5af0e1.tar.gz gdb-5a38dc70b43becf6e5865c90d5dcaf254f5af0e1.tar.bz2 |
* 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-i370.c')
-rw-r--r-- | gas/config/tc-i370.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/config/tc-i370.c b/gas/config/tc-i370.c index 87d8af8..784411d 100644 --- a/gas/config/tc-i370.c +++ b/gas/config/tc-i370.c @@ -1,6 +1,6 @@ /* tc-i370.c -- Assembler for the IBM 360/370/390 instruction set. Loosely based on the ppc files by Linas Vepstas <linas@linas.org> 1998, 99 - Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 + Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. Written by Ian Lance Taylor, Cygnus Support. @@ -430,9 +430,9 @@ const int md_long_jump_size = 4; #endif #ifdef OBJ_ELF -CONST char *md_shortopts = "l:um:K:VQ:"; +const char *md_shortopts = "l:um:K:VQ:"; #else -CONST char *md_shortopts = "um:"; +const char *md_shortopts = "um:"; #endif struct option md_longopts[] = { @@ -1419,7 +1419,7 @@ add_to_lit_pool (expressionS *exx, char *name, int sz) static void symbol_locate (symbolP, name, segment, valu, frag) symbolS *symbolP; - CONST char *name; /* It is copied, the caller can modify */ + const char *name; /* It is copied, the caller can modify */ segT segment; /* Segment identifier (SEG_<something>) */ valueT valu; /* Symbol value */ fragS *frag; /* Associated fragment */ |