diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2013-09-27 11:17:34 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2013-09-27 11:17:34 +0000 |
commit | f91aec98e2fe78e4200a22878968c9cdadb6187a (patch) | |
tree | 6a62538ae942e34a91855dc0c6321be35b4fcfbb /gcc/reload1.c | |
parent | a9195970f018e50bc115962d518b09c7133da649 (diff) | |
download | gcc-f91aec98e2fe78e4200a22878968c9cdadb6187a.zip gcc-f91aec98e2fe78e4200a22878968c9cdadb6187a.tar.gz gcc-f91aec98e2fe78e4200a22878968c9cdadb6187a.tar.bz2 |
cse.c (count_reg_usage): Handle INT_LIST.
gcc/
* cse.c (count_reg_usage): Handle INT_LIST.
* lra-eliminations.c (lra_eliminate_regs_1): Likewise.
* reginfo.c (reg_scan_mark_refs): Likewise.
* reload1.c (eliminate_regs_1): Likewise.
From-SVN: r202969
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index 7a82c07e..6cb0f57 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -2776,6 +2776,7 @@ eliminate_regs_1 (rtx x, enum machine_mode mem_mode, rtx insn, /* ... fall through ... */ case INSN_LIST: + case INT_LIST: /* Now do eliminations in the rest of the chain. If this was an EXPR_LIST, this might result in allocating more memory than is strictly needed, but it simplifies the code. */ |