diff options
author | Jeff Law <law@redhat.com> | 2016-03-29 16:26:28 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2016-03-29 16:26:28 -0600 |
commit | 0e118e94c1a7f88168891be78fbd0ca6888a74e9 (patch) | |
tree | 887afdf5f917ac3696642d3c55f6319da9624c86 | |
parent | 3c10b1e6b9bca3d17c5f264fc8355ef2e5357578 (diff) | |
download | gcc-0e118e94c1a7f88168891be78fbd0ca6888a74e9.zip gcc-0e118e94c1a7f88168891be78fbd0ca6888a74e9.tar.gz gcc-0e118e94c1a7f88168891be78fbd0ca6888a74e9.tar.bz2 |
tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in comment.
* tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in
comment.
From-SVN: r234538
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-ssa-coalesce.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c0691c5..9d5b011 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 57fc653..93e1e2e 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 { |