From: Uros Bizjak Date: Tue, 2 May 2017 11:38:36 +0000 (+0200) Subject: i386.c (ix86_code_end): Use {FIRST,LAST}_INT_REG. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0b1053b27063d02fd05b1dddb560dc0185412da0;p=gcc.git i386.c (ix86_code_end): Use {FIRST,LAST}_INT_REG. * config/i386/i386.c (ix86_code_end): Use {FIRST,LAST}_INT_REG. From-SVN: r247489 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e411cc310be..85ce7f8f410 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2017-05-02 Uros Bizjak + + * config/i386/i386.c (ix86_code_end): Use {FIRST,LAST}_INT_REG. + 2017-05-02 Richard Biener PR tree-optimization/80591 diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index a09c2c7da21..7547539ea81 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -12100,7 +12100,7 @@ ix86_code_end (void) rtx xops[2]; int regno; - for (regno = AX_REG; regno <= SP_REG; regno++) + for (regno = FIRST_INT_REG; regno <= LAST_INT_REG; regno++) { char name[32]; tree decl;