diff options
author | Jeff Law <law@redhat.com> | 2013-11-07 12:26:25 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2013-11-07 12:26:25 -0700 |
commit | 6d0b710573662ba451996d0a7d9bf0174229b8c3 (patch) | |
tree | 9bbaa8f713ab16d899bcfee67ee23c23be550e2c /gcc/varpool.c | |
parent | 76c79d3307d4d67558d4d41e72b218463e44f77d (diff) | |
download | gcc-6d0b710573662ba451996d0a7d9bf0174229b8c3.zip gcc-6d0b710573662ba451996d0a7d9bf0174229b8c3.tar.gz gcc-6d0b710573662ba451996d0a7d9bf0174229b8c3.tar.bz2 |
* varpool.c (ctor_for_folding): Fix typo in comment.
From-SVN: r204537
Diffstat (limited to 'gcc/varpool.c')
-rw-r--r-- | gcc/varpool.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |