aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-sh.c
diff options
context:
space:
mode:
authorKlee Dienes <kdienes@apple.com>2002-11-21 09:54:12 +0000
committerKlee Dienes <kdienes@apple.com>2002-11-21 09:54:12 +0000
commit5ff3743120dac75a0f2fcb0e7b4a62dc4ca279a9 (patch)
treeb778eae29702dfa436f0bbb3bf33663bcc4ca9d7 /gas/config/tc-sh.c
parent444d9f96ab5a5d1273577111553a5af57f567a7e (diff)
downloadgdb-5ff3743120dac75a0f2fcb0e7b4a62dc4ca279a9.zip
gdb-5ff3743120dac75a0f2fcb0e7b4a62dc4ca279a9.tar.gz
gdb-5ff3743120dac75a0f2fcb0e7b4a62dc4ca279a9.tar.bz2
2002-11-20 Klee Dienes <kdienes@apple.com>
* config/tc-mcore.c (md_begin): Use a const iterator. Don't coalesce the name fields to use the same pointer. * config/tc-sh.c (md_begin): Use a const iterator. Don't coalesce the name fields to use the same pointer. (get_specific): Check for opcodes with the same name using strcmp as well as comparing the pointer.
Diffstat (limited to 'gas/config/tc-sh.c')
-rw-r--r--gas/config/tc-sh.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/gas/config/tc-sh.c b/gas/config/tc-sh.c
index 664c269..5c62303 100644
--- a/gas/config/tc-sh.c
+++ b/gas/config/tc-sh.c
@@ -863,7 +863,7 @@ sh_elf_cons (nbytes)
void
md_begin ()
{
- sh_opcode_info *opcode;
+ const sh_opcode_info *opcode;
char *prev_name = "";
int target_arch;
@@ -879,19 +879,13 @@ md_begin ()
/* Insert unique names into hash table. */
for (opcode = sh_table; opcode->name; opcode++)
{
- if (strcmp (prev_name, opcode->name))
+ if (strcmp (prev_name, opcode->name) != 0)
{
if (! (opcode->arch & target_arch))
continue;
prev_name = opcode->name;
hash_insert (opcode_hash_control, opcode->name, (char *) opcode);
}
- else
- {
- /* Make all the opcodes with the same name point to the same
- string. */
- opcode->name = prev_name;
- }
}
}
@@ -1574,7 +1568,7 @@ get_specific (opcode, operands)
while (opcode->name)
{
this_try = opcode++;
- if (this_try->name != name)
+ if ((this_try->name != name) && (strcmp (this_try->name, name) != 0))
{
/* We've looked so far down the table that we've run out of
opcodes with the same name. */