From: law Date: Tue, 29 Mar 2016 22:26:28 +0000 (+0000) Subject: * tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6fbac353adb2984082ade10a760c9c43f855eca0;p=thirdparty%2Fgcc.git * tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in comment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@234538 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c0691c523ae0..9d5b01160a61 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-03-29 Jeff Law + + * tree-ssa-coalesce.c (struct ssa_conflicts): Fix typo in + comment. + 2016-03-10 Jan Hubicka * 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 57fc6530e695..93e1e2eafe97 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 {