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
This commit is contained in:
parent
aee63acc76
commit
0b1053b270
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2017-05-02 Uros Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* config/i386/i386.c (ix86_code_end): Use {FIRST,LAST}_INT_REG.
|
||||
|
||||
2017-05-02 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/80591
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue