diff --git a/gold/ChangeLog b/gold/ChangeLog index 6f72f92cb6..f1ed09e607 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,8 @@ +2011-09-19 Cary Coutant + + * incremental.cc (can_incremental_update): Fix typo in comment. + * incremental.h (can_incremental_update): Likewise. + 2011-09-18 Cary Coutant * incremental.cc (can_incremental_update): New function. diff --git a/gold/incremental.cc b/gold/incremental.cc index 998c04df27..b422827e5a 100644 --- a/gold/incremental.cc +++ b/gold/incremental.cc @@ -161,7 +161,7 @@ Incremental_binary::error(const char* format, ...) const va_end(args); } -// Return TRUE if a section of type SH_TYPE will can be updated in place +// Return TRUE if a section of type SH_TYPE can be updated in place // during an incremental update. We can update sections of type PROGBITS, // NOBITS, INIT_ARRAY, FINI_ARRAY, PREINIT_ARRAY, and NOTE. All others // will be regenerated. diff --git a/gold/incremental.h b/gold/incremental.h index 5d1ebda13f..e6732df5ac 100644 --- a/gold/incremental.h +++ b/gold/incremental.h @@ -81,7 +81,7 @@ enum Incremental_shlib_symbol_flags static const int INCREMENTAL_SHLIB_SYM_FLAGS_SHIFT = 30; -// Return TRUE if a section of type SH_TYPE will can be updated in place +// Return TRUE if a section of type SH_TYPE can be updated in place // during an incremental update. bool can_incremental_update(unsigned int sh_type);