diff options
Diffstat (limited to 'gold/parameters.cc')
-rw-r--r-- | gold/parameters.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gold/parameters.cc b/gold/parameters.cc index 1b371d8e5bb..0384dd68081 100644 --- a/gold/parameters.cc +++ b/gold/parameters.cc @@ -248,6 +248,14 @@ Parameters::incremental() const return this->incremental_mode_ != General_options::INCREMENTAL_OFF; } +// Return true if we are doing a full incremental link. + +bool +Parameters::incremental_full() const +{ + return this->incremental_mode_ == General_options::INCREMENTAL_FULL; +} + // Return true if we are doing an incremental update. bool |