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/sched-deps.c | |
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/sched-deps.c')
-rw-r--r-- | gcc/sched-deps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sched-deps.c b/gcc/sched-deps.c index 604eb8eade1..a00781de730 100644 --- a/gcc/sched-deps.c +++ b/gcc/sched-deps.c @@ -3174,7 +3174,7 @@ sched_analyze_insn (struct deps_desc *deps, rtx x, rtx_insn *insn) { rtx other = XEXP (list, 0); if (INSN_CACHED_COND (other) != const_true_rtx - && refers_to_regno_p (i, i + 1, INSN_CACHED_COND (other), NULL)) + && refers_to_regno_p (i, INSN_CACHED_COND (other))) INSN_CACHED_COND (other) = const_true_rtx; } } |