From: Jeff Law Date: Thu, 7 Nov 2013 19:26:25 +0000 (-0700) Subject: * varpool.c (ctor_for_folding): Fix typo in comment. X-Git-Tag: upstream/12.2.0~66761 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6d0b710573662ba451996d0a7d9bf0174229b8c3;p=platform%2Fupstream%2Fgcc.git * varpool.c (ctor_for_folding): Fix typo in comment. From-SVN: r204537 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 57e276a..243175c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2013-11-07 Jeff Law + + * varpool.c (ctor_for_folding): Fix typo in comment. + 2013-11-07 Joern Rennecke * config/arc/arc.c (arc_ifcvt): Use commutativity, e.g.: diff --git a/gcc/varpool.c b/gcc/varpool.c index 4f1658e..1e4c823 100644 --- a/gcc/varpool.c +++ b/gcc/varpool.c @@ -304,7 +304,7 @@ ctor_for_folding (tree decl) return DECL_INITIAL (real_decl); } - /* If thre is no constructor, we have nothing to do. */ + /* If there is no constructor, we have nothing to do. */ if (DECL_INITIAL (real_decl) == error_mark_node) return error_mark_node;