[PATCH] x86: fix build when REGISTER_WARNINGS is zero
Jan Beulich
JBeulich@suse.com
Tue Oct 8 14:01:00 GMT 2013
More information about the Binutils mailing list
Tue Oct 8 14:01:00 GMT 2013
- Previous message (by thread): [PATCH] x86/Intel: invlpg and prefetch* should allow any operand size
- Next message (by thread): [PATCH] x86: fix build when REGISTER_WARNINGS is zero
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
This was broken due to a misplaced "else". 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. --- 2013-10-07/gas/config/tc-i386.c +++ 2013-10-07/gas/config/tc-i386.c @@ -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; -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: binutils-mainline-x86-register-warnings.patch URL: <https://sourceware.org/pipermail/binutils/attachments/20131008/ee35a06c/attachment.ksh>
- Previous message (by thread): [PATCH] x86/Intel: invlpg and prefetch* should allow any operand size
- Next message (by thread): [PATCH] x86: fix build when REGISTER_WARNINGS is zero
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list