diff options
author | Nick Clifton <nickc@redhat.com> | 2000-08-04 22:23:32 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-08-04 22:23:32 +0000 |
commit | 3d4ae3c0c6cbd480d202a6b1dcb6d3a5b75f9915 (patch) | |
tree | a3facf0bc4ab54ca6abb313fd5ffc599eeb12ef5 /gas/config | |
parent | 9a2976104188c0cecfd7e35525b04cb5c3f142a8 (diff) | |
download | gdb-3d4ae3c0c6cbd480d202a6b1dcb6d3a5b75f9915.zip gdb-3d4ae3c0c6cbd480d202a6b1dcb6d3a5b75f9915.tar.gz gdb-3d4ae3c0c6cbd480d202a6b1dcb6d3a5b75f9915.tar.bz2 |
Fix typo
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-sparc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c index 1984f54..a2fe524 100644 --- a/gas/config/tc-sparc.c +++ b/gas/config/tc-sparc.c @@ -786,9 +786,9 @@ md_begin () for (i = 0; native_op_table[i].name; i++) { const struct sparc_opcode *insn; - char *name = sparc_arch_size == (32 - ? native_op_table[i].name32 - : native_op_table[i].name64); + char *name = ((sparc_arch_size == 32) + ? native_op_table[i].name32 + : native_op_table[i].name64); insn = (struct sparc_opcode *) hash_find (op_hash, name); if (insn == NULL) { |