diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-10-15 18:33:23 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-10-15 18:33:23 +0000 |
commit | 8990536adf36862470e5c78507e8017e290f684c (patch) | |
tree | ece0c0568358f34f2a2098461ab207b12d48c7f3 /gcc/sched-deps.c | |
parent | b6e3379c1e9545fb8003d85d2353aa0467ec1f9b (diff) | |
download | gcc-8990536adf36862470e5c78507e8017e290f684c.tar.gz |
gcc/
* doc/rtl.texi (const_double): Remove the "addr" operand.
Describe CONST_DOUBLE_* macros under const_double rather
than const_vector.
(const_fixed): Fix the operand description.
(const): Add an @findex directive.
(CONST0_RTX, CONST1_RTX, CONST2_RTX): Move description
after the constant rtl table.
(fix): Combine floating-point and fixed-point descriptions.
Fix hyphenation.
* sched-deps.c (sched_analyze_2): Remove reference to
CONST_DOUBLE_CHAIN.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@141149 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sched-deps.c')
-rw-r--r-- | gcc/sched-deps.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/sched-deps.c b/gcc/sched-deps.c index 784f84ff63d..81fcb806228 100644 --- a/gcc/sched-deps.c +++ b/gcc/sched-deps.c @@ -2008,10 +2008,7 @@ sched_analyze_2 (struct deps *deps, rtx x, rtx insn) case SYMBOL_REF: case CONST: case LABEL_REF: - /* Ignore constants. Note that we must handle CONST_DOUBLE here - because it may have a cc0_rtx in its CONST_DOUBLE_CHAIN field, but - this does not mean that this insn is using cc0. */ - + /* Ignore constants. */ if (cslr_p && sched_deps_info->finish_rhs) sched_deps_info->finish_rhs (); |