aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2015-01-29 22:50:33 -0700
committerJeff Law <law@gcc.gnu.org>2015-01-29 22:50:33 -0700
commit8ec350edf40d5d2f0f868136f514d6fd7832505a (patch)
treec6610f14887f3f272a9909f80be1098925fec53d /gcc
parentdd1c1f8cb5e4f405d2b6f693ef42b32e47f70b52 (diff)
downloadgcc-8ec350edf40d5d2f0f868136f514d6fd7832505a.zip
gcc-8ec350edf40d5d2f0f868136f514d6fd7832505a.tar.gz
gcc-8ec350edf40d5d2f0f868136f514d6fd7832505a.tar.bz2
* combine.c (try_combine): Fix typo in comment.
From-SVN: r220273
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/combine.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a44ff5b..60d8723 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-29 Jeff Law <law@redhat.com>
+
+ * combine.c (try_combine): Fix typo in comment.
+
2015-01-29 Segher Boessenkool <segher@kernel.crashing.org>
PR target/64580
diff --git a/gcc/combine.c b/gcc/combine.c
index 24418df..ad3bed0 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -2645,7 +2645,7 @@ try_combine (rtx_insn *i3, rtx_insn *i2, rtx_insn *i1, rtx_insn *i0,
nshift++;
}
- /* If I0 loads a memory and I3 sets the same memory, then I2 and I3
+ /* If I0 loads a memory and I3 sets the same memory, then I1 and I2
are likely manipulating its value. Ideally we'll be able to combine
all four insns into a bitfield insertion of some kind.