diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2012-11-06 00:07:47 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2012-11-05 16:07:47 -0800 |
commit | 39b98eb1692b06baeae3b331a62773da566d712d (patch) | |
tree | a191474f2e550b7610149464716fd6b24f16c1cb /gcc/config | |
parent | 3c7d8b035a57419b706d0855e14d5b50b565ed7e (diff) | |
download | gcc-39b98eb1692b06baeae3b331a62773da566d712d.zip gcc-39b98eb1692b06baeae3b331a62773da566d712d.tar.gz gcc-39b98eb1692b06baeae3b331a62773da566d712d.tar.bz2 |
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
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |