diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2003-12-07 00:08:41 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2003-12-07 00:08:41 +0000 |
commit | 48ecb30c92a29b12766e9b1b0bac69aba01bd9ea (patch) | |
tree | e170576289e85a683cc1523447ba2b1186483a36 /ld | |
parent | ff85c3bec462300ba827282f07307ae4981a2104 (diff) | |
download | fsf-binutils-gdb-48ecb30c92a29b12766e9b1b0bac69aba01bd9ea.zip fsf-binutils-gdb-48ecb30c92a29b12766e9b1b0bac69aba01bd9ea.tar.gz fsf-binutils-gdb-48ecb30c92a29b12766e9b1b0bac69aba01bd9ea.tar.bz2 |
* lexsup.c (is_num): Remove.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/lexsup.c | 23 |
2 files changed, 4 insertions, 23 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index de662ea..a6a4bf0 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2003-12-06 Kazu Hirata <kazu@cs.umass.edu> + + * lexsup.c (is_num): Remove. + 2003-12-05 Dmitry Semyonov <Dmitry.Semyonov@oktet.ru> * pe-dll.c (generate_reloc): Remap ARM_26D relocation from 5 to diff --git a/ld/lexsup.c b/ld/lexsup.c index 611f838..e43e15e 100644 --- a/ld/lexsup.c +++ b/ld/lexsup.c @@ -444,29 +444,6 @@ static const struct ld_option ld_options[] = #define OPTION_COUNT ARRAY_SIZE (ld_options) -/* Test STRING for containing a string of digits that form a number - between MIN and MAX. The return value is the number or ERR. */ - -static int -is_num (const char *string, int min, int max, int err) -{ - int result = 0; - - for (; *string; ++string) - { - if (! ISDIGIT (*string)) - { - result = err; - break; - } - result = result * 10 + (*string - '0'); - } - if (result < min || result > max) - result = err; - - return result; -} - void parse_args (unsigned argc, char **argv) { |