diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2017-05-02 13:38:36 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2017-05-02 13:38:36 +0200 |
commit | 0b1053b27063d02fd05b1dddb560dc0185412da0 (patch) | |
tree | f1202a4f3f22eb0f43dc3e6e5dd18bf904bd2c7b /gcc/config/i386 | |
parent | aee63acc76771bb7bec72073ca8a5a2efff2d6fd (diff) | |
download | gcc-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.c | 2 |
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; |