diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-07-13 04:46:34 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-07-13 04:46:34 +0000 |
commit | 47ae02b70c395550e01975e649e37f6ea829dac5 (patch) | |
tree | b334918063791e89f97a111eb02e3d0c9f8a766e /gcc/cse.c | |
parent | d7d884cefe202081bff234e3bd0a3dcaed79d5a1 (diff) | |
download | gcc-47ae02b70c395550e01975e649e37f6ea829dac5.tar.gz |
Fix double word typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@225726 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cse.c')
-rw-r--r-- | gcc/cse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cse.c b/gcc/cse.c index b06c6693d02..1c14d83eb89 100644 --- a/gcc/cse.c +++ b/gcc/cse.c @@ -3059,7 +3059,7 @@ find_comparison_args (enum rtx_code code, rtx *parg1, rtx *parg2, if (x == 0) break; - /* If we need to reverse the comparison, make sure that that is + /* If we need to reverse the comparison, make sure that is possible -- we can't necessarily infer the value of GE from LT with floating-point operands. */ if (reverse_code) @@ -4303,7 +4303,7 @@ find_sets_in_insn (rtx_insn *insn, struct set **psets) } /* Where possible, substitute every register reference in the N_SETS - number of SETS in INSN with the the canonical register. + number of SETS in INSN with the canonical register. Register canonicalization propagatest the earliest register (i.e. one that is set before INSN) with the same value. This is a very |