diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-02-23 23:14:39 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-02-23 23:14:39 +0000 |
commit | 1857d1e67d65a7f080c08c3ae6462f3f071d9654 (patch) | |
tree | 30c030489fe2823059e6c4620e198c901fe7fea2 /gas | |
parent | 8a974fdc24e10d752e298053bdea8dbfbda7b738 (diff) | |
download | gdb-1857d1e67d65a7f080c08c3ae6462f3f071d9654.zip gdb-1857d1e67d65a7f080c08c3ae6462f3f071d9654.tar.gz gdb-1857d1e67d65a7f080c08c3ae6462f3f071d9654.tar.bz2 |
fix minor formatting problem
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/tc-mips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 382540a..5de9d9f 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -6341,9 +6341,9 @@ mips_ip (str, ip) for (s = str; *s != '\0' && !isspace(*s); ++s) continue; - if ( isspace(*s) ) + if (isspace (*s)) *s++ = '\0'; - + if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL) { insn_error = "unrecognized opcode"; |