diff options
author | olegendo <olegendo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-01-05 22:04:53 +0000 |
---|---|---|
committer | olegendo <olegendo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-01-05 22:04:53 +0000 |
commit | 2ec77a7cc5b04ea0b5b1fac0a0c64aefbc65b508 (patch) | |
tree | 8e3fd9b95272e38722b8ccc0c1966d15de16b449 /gcc/config/arc/arc.md | |
parent | ed53cebe3549171cd5ee908d064b019e834b02ff (diff) | |
download | gcc-2ec77a7cc5b04ea0b5b1fac0a0c64aefbc65b508.tar.gz |
gcc/
* rtlanal.c (refers_to_regno_p): Change return value from int to bool.
* rtl.h (refers_to_regno_p): Add overload.
* cse.c: Use it.
* bt-load.c: Likewise.
* combine.c: Likewise.
* df-scan.c: Likewise.
* sched-deps.c: Likewise.
* config/s390/s390.c: Likewise.
* config/m32r/m32r.c: Likewise.
* config/rs6000/spe.md: Likewise.
* config/rs6000/rs6000.c: Likewise.
* config/pa/pa.c: Likewise.
* config/stormy16/stormy16.c: Likewise.
* config/cris/cris.c: Likewise.
* config/arc/arc.md: Likewise.
* config/arc/arc.c: Likewise.
* config/sh/sh.md: Likewise.
* config/sh/sh.c: Likewise.
* config/frv/frv.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@219203 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/arc/arc.md')
-rw-r--r-- | gcc/config/arc/arc.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/arc/arc.md b/gcc/config/arc/arc.md index ba0125d4c2c..8fabf5e6fbb 100644 --- a/gcc/config/arc/arc.md +++ b/gcc/config/arc/arc.md @@ -952,8 +952,7 @@ last. Otherwise, load it first. Note that we cannot have auto-increment in that case since the address register is known to be dead. */ - if (refers_to_regno_p (REGNO (operands[0]), REGNO (operands[0]) + 1, - operands [1], 0)) + if (refers_to_regno_p (REGNO (operands[0]), operands[1])) return \"ld%V1 %R0,%R1\;ld%V1 %0,%1\"; else switch (GET_CODE (XEXP(operands[1], 0))) { |