diff options
author | Jeff Law <law@redhat.com> | 2015-01-29 22:50:33 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2015-01-29 22:50:33 -0700 |
commit | 8ec350edf40d5d2f0f868136f514d6fd7832505a (patch) | |
tree | c6610f14887f3f272a9909f80be1098925fec53d /gcc/combine.c | |
parent | dd1c1f8cb5e4f405d2b6f693ef42b32e47f70b52 (diff) | |
download | gcc-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/combine.c')
-rw-r--r-- | gcc/combine.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. |