Replace REX_INT_REG_P with REX_INT_REGNO_P

* config/i386/i386.c (print_reg): Replace REX_INT_REG_P with
	REX_INT_REGNO_P.

From-SVN: r193197
This commit is contained in:
H.J. Lu 2012-11-06 00:07:47 +00:00 committed by H.J. Lu
parent 3c7d8b035a
commit 39b98eb169
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-11-05 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.c (print_reg): Replace REX_INT_REG_P with
REX_INT_REGNO_P.
2012-11-05 Eric Botcazou <ebotcazou@adacore.com>
PR tree-optimization/54986

View File

@ -14119,7 +14119,7 @@ print_reg (rtx x, int code, FILE *file)
/* Irritatingly, AMD extended registers use different naming convention
from the normal registers: "r%d[bwd]" */
if (REX_INT_REG_P (x))
if (REX_INT_REGNO_P (regno))
{
gcc_assert (TARGET_64BIT);
putc ('r', file);