mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 07:14:18 +08:00
(s_iq2000_set): Fix thinko parsing ignored_arguments array.
This commit is contained in:
parent
5356adc8d2
commit
b8b80cf7d5
@ -1,3 +1,8 @@
|
||||
2005-01-12 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* config/tc-iq2000.c (s_iq2000_set): Fix thinko parsing
|
||||
ignored_arguments array.
|
||||
|
||||
2005-01-10 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* write.c (write_object_file): Disallow a symbol equated to
|
||||
|
@ -686,7 +686,7 @@ s_iq2000_set (int x ATTRIBUTE_UNUSED)
|
||||
"nobopt",
|
||||
NULL
|
||||
};
|
||||
const char * ignored;
|
||||
const char ** ignored;
|
||||
char *name = input_line_pointer, ch;
|
||||
char *save_ILP = input_line_pointer;
|
||||
|
||||
@ -695,10 +695,10 @@ s_iq2000_set (int x ATTRIBUTE_UNUSED)
|
||||
ch = *input_line_pointer;
|
||||
*input_line_pointer = '\0';
|
||||
|
||||
for (ignored = ignored_arguments[0]; ignored; ignored ++)
|
||||
if (strcmp (ignored, name) == 0)
|
||||
for (ignored = ignored_arguments; * ignored; ignored ++)
|
||||
if (strcmp (* ignored, name) == 0)
|
||||
break;
|
||||
if (ignored == NULL)
|
||||
if (* ignored == NULL)
|
||||
{
|
||||
/* We'd like to be able to use .set symbol, expn */
|
||||
input_line_pointer = save_ILP;
|
||||
|
Loading…
Reference in New Issue
Block a user