mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
gas/
2013-10-08 Jan Beulich <jbeulich@suse.com> * tc-i386.c (check_word_reg): Remove misplaced "else". (check_long_reg): Restore symmetry with check_word_reg.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2013-10-08 Jan Beulich <jbeulich@suse.com>
|
||||
|
||||
* tc-i386.c (check_word_reg): Remove misplaced "else".
|
||||
(check_long_reg): Restore symmetry with check_word_reg.
|
||||
|
||||
2013-10-08 Jan Beulich <jbeulich@suse.com>
|
||||
|
||||
* gas/config/tc-arm.c (do_t_push_pop): Honor inst.size_req. Simplify
|
||||
|
||||
@@ -5434,13 +5434,10 @@ check_long_reg (void)
|
||||
return 0;
|
||||
}
|
||||
#if REGISTER_WARNINGS
|
||||
else
|
||||
as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
|
||||
register_prefix,
|
||||
(i.op[op].regs + REGNAM_EAX - REGNAM_AX)->reg_name,
|
||||
register_prefix,
|
||||
i.op[op].regs->reg_name,
|
||||
i.suffix);
|
||||
as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
|
||||
register_prefix,
|
||||
(i.op[op].regs + REGNAM_EAX - REGNAM_AX)->reg_name,
|
||||
register_prefix, i.op[op].regs->reg_name, i.suffix);
|
||||
#endif
|
||||
}
|
||||
/* Warn if the r prefix on a general reg is missing. */
|
||||
@@ -5546,14 +5543,11 @@ check_word_reg (void)
|
||||
i.suffix);
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
#if REGISTER_WARNINGS
|
||||
as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
|
||||
register_prefix,
|
||||
(i.op[op].regs + REGNAM_AX - REGNAM_EAX)->reg_name,
|
||||
register_prefix,
|
||||
i.op[op].regs->reg_name,
|
||||
i.suffix);
|
||||
as_warn (_("using `%s%s' instead of `%s%s' due to `%c' suffix"),
|
||||
register_prefix,
|
||||
(i.op[op].regs + REGNAM_AX - REGNAM_EAX)->reg_name,
|
||||
register_prefix, i.op[op].regs->reg_name, i.suffix);
|
||||
#endif
|
||||
}
|
||||
return 1;
|
||||
|
||||
Reference in New Issue
Block a user