aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2016-03-29 22:26:28 +0000
committerJeff Law <law@redhat.com>2016-03-29 22:26:28 +0000
commit491470cdf18a9617fc2ff61d5925d88c27e51cd1 (patch)
tree887afdf5f917ac3696642d3c55f6319da9624c86
parentdf5a63d5affeef9a6105fecb202e24bb71ad5ffd (diff)
* tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in
comment. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@234538 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tree-ssa-coalesce.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c0691c523ae..9d5b01160a6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2016-03-29 Jeff Law <law@redhat.com>
+
+ * tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in
+ comment.
+
2016-03-10 Jan Hubicka <hubicka@ucw.cz>
* tree-ssa-loop-ivcanon.c (try_peel_loop): Change type of peel
diff --git a/gcc/tree-ssa-coalesce.c b/gcc/tree-ssa-coalesce.c
index 57fc6530e69..93e1e2eafe9 100644
--- a/gcc/tree-ssa-coalesce.c
+++ b/gcc/tree-ssa-coalesce.c
@@ -70,7 +70,7 @@ struct coalesce_pair
/* This represents a conflict graph. Implemented as an array of bitmaps.
A full matrix is used for conflicts rather than just upper triangular form.
- this make sit much simpler and faster to perform conflict merges. */
+ this makes it much simpler and faster to perform conflict merges. */
struct ssa_conflicts
{