From Craig Silverstein: Implement --debug=files to track file opens,

and implement --verbose as a synonym.
This commit is contained in:
Ian Lance Taylor 2008-03-13 01:46:17 +00:00
parent 858b27aeed
commit 2285a61069
6 changed files with 37 additions and 9 deletions

View file

@ -116,7 +116,9 @@ class Parameters
int
debug() const
{
gold_assert(this->options_valid());
// This can be called before the options are set up.
if (!this->options_valid())
return 0;
return debug_;
}