From 39b98eb1692b06baeae3b331a62773da566d712d Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Tue, 6 Nov 2012 00:07:47 +0000 Subject: 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 --- gcc/config/i386/i386.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/config') diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 2066b89..62f380f 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -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); -- cgit v1.1