diff options
author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-03-17 14:10:39 +0000 |
---|---|---|
committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-03-17 14:10:39 +0000 |
commit | 10e0c3ef7195c70aef2a52f49e696da04364effd (patch) | |
tree | 29124400cfe4e091fc4a013da5cde3f98a62419c /gcc/config/epiphany | |
parent | be3296cba67fd8157753640630927324117568de (diff) | |
download | gcc-10e0c3ef7195c70aef2a52f49e696da04364effd.tar.gz |
* config/i386/i386.md (*movv4qicc_insn+1..36): Pass
true as ALL_REGS argument to replace_rtx.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@234290 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/epiphany')
-rw-r--r-- | gcc/config/epiphany/epiphany.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/epiphany/epiphany.md b/gcc/config/epiphany/epiphany.md index 15a61513e97..18f96613ae6 100644 --- a/gcc/config/epiphany/epiphany.md +++ b/gcc/config/epiphany/epiphany.md @@ -2026,8 +2026,8 @@ { operands[10] = simplify_gen_subreg (<WMODE:MODE>mode, operands[3], <WMODE2:MODE>mode, 0); - replace_rtx (operands[2], operands[9], operands[3]); - replace_rtx (operands[2], operands[0], operands[10]); + replace_rtx (operands[2], operands[9], operands[3], true); + replace_rtx (operands[2], operands[0], operands[10], true); gcc_assert (!reg_overlap_mentioned_p (operands[0], operands[2])); }) |