aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/i386
diff options
context:
space:
mode:
authorUros Bizjak <ubizjak@gmail.com>2017-05-02 13:38:36 +0200
committerUros Bizjak <uros@gcc.gnu.org>2017-05-02 13:38:36 +0200
commit0b1053b27063d02fd05b1dddb560dc0185412da0 (patch)
treef1202a4f3f22eb0f43dc3e6e5dd18bf904bd2c7b /gcc/config/i386
parentaee63acc76771bb7bec72073ca8a5a2efff2d6fd (diff)
downloadgcc-0b1053b27063d02fd05b1dddb560dc0185412da0.zip
gcc-0b1053b27063d02fd05b1dddb560dc0185412da0.tar.gz
gcc-0b1053b27063d02fd05b1dddb560dc0185412da0.tar.bz2
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
Diffstat (limited to 'gcc/config/i386')
-rw-r--r--gcc/config/i386/i386.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
index a09c2c7..7547539 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;