diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2004-11-03 01:54:25 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2004-11-03 01:54:25 +0000 |
commit | 2b4f075ada87521f86a61e93133a0ba1c247c322 (patch) | |
tree | 7e7394add934ca2f33ef53b9627bdf08e4a5be60 /gas/config/tc-cris.c | |
parent | 60a95160b7fd354c80acd365bdeb5bfaf84e4349 (diff) | |
download | gdb-2b4f075ada87521f86a61e93133a0ba1c247c322.zip gdb-2b4f075ada87521f86a61e93133a0ba1c247c322.tar.gz gdb-2b4f075ada87521f86a61e93133a0ba1c247c322.tar.bz2 |
* symbols.c (colon) [!WORKING_DOT_WORD]: Don't declare
md_short_jump_size, md_long_jump_size.
* write.c [!WORKING_DOT_WORD]: Ditto.
* tc.h [!WORKING_DOT_WORD]: Declare them here. Drop const
qualifier.
* config/tc-cris.h (md_short_jump_size, md_long_jump_size): Don't
declare.
* config/tc-cris.c (md_short_jump_size, md_long_jump_size): Drop
const qualifier in these definitions.
* config/tc-i370.c, config/tc-m68k.c, config/tc-pdp11.c,
config/tc-s390.c, config/tc-tahoe.c, config/tc-vax.c: Ditto.
Diffstat (limited to 'gas/config/tc-cris.c')
-rw-r--r-- | gas/config/tc-cris.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-cris.c b/gas/config/tc-cris.c index e725b88..0f3d3c8 100644 --- a/gas/config/tc-cris.c +++ b/gas/config/tc-cris.c @@ -341,8 +341,8 @@ const char *md_shortopts = "hHN"; Note that we can't add relocs, because relaxation uses these fixed numbers, and md_create_short_jump is called after relaxation. */ -const int md_short_jump_size = 6; -const int md_long_jump_size = 6; +int md_short_jump_size = 6; +int md_long_jump_size = 6; /* Report output format. Small changes in output format (like elf variants below) can happen until all options are parsed, but after |