diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2000-05-18 22:01:04 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2000-05-18 22:01:04 +0000 |
commit | 8c5ff9729dca82de53213f16112b7e57e6c7282a (patch) | |
tree | 34d1d056595d7ff8cfe20f7a44a4e7caa879569b /ld | |
parent | 7ad34365726a22e728f4508049ac3ac9c63401c6 (diff) | |
download | gdb-8c5ff9729dca82de53213f16112b7e57e6c7282a.zip gdb-8c5ff9729dca82de53213f16112b7e57e6c7282a.tar.gz gdb-8c5ff9729dca82de53213f16112b7e57e6c7282a.tar.bz2 |
2000-05-18 H.J. Lu <hjl@gnu.org>
* lexsup.c (parse_args): `i' == `r', not `q'.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/lexsup.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 60d6eca..bdb5df6 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2000-05-18 H.J. Lu <hjl@gnu.org> + + * lexsup.c (parse_args): `i' == `r', not `q'. + Thu May 18 10:47:57 2000 Jeffrey A Law (law@cygnus.com) * configure.tgt (hppa*64*-*-*): Enable PA64 target. diff --git a/ld/lexsup.c b/ld/lexsup.c index 604eb67..99190e5 100644 --- a/ld/lexsup.c +++ b/ld/lexsup.c @@ -718,10 +718,10 @@ parse_args (argc, argv) case OPTION_OFORMAT: lang_add_output_format (optarg, (char *) NULL, (char *) NULL, 0); break; - case 'i': case 'q': link_info.emitrelocations = true; break; + case 'i': case 'r': link_info.relocateable = true; config.build_constructors = false; |