Make comments and code for QuietWarnings and QuietErrors

actually correspond to what their names suggest.

llvm-svn: 58146
This commit is contained in:
Dan Gohman 2008-10-25 17:57:20 +00:00
parent 811eed81ab
commit f856f50463
2 changed files with 3 additions and 3 deletions

View File

@ -52,8 +52,8 @@ class Linker {
/// linker. /// linker.
enum ControlFlags { enum ControlFlags {
Verbose = 1, ///< Print to std::cerr what steps the linker is taking Verbose = 1, ///< Print to std::cerr what steps the linker is taking
QuietWarnings = 2, ///< Don't print errors and warnings to std::cerr. QuietWarnings = 2, ///< Don't print warnings to std::cerr.
QuietErrors = 4 ///< Indicate that this link is for a native executable QuietErrors = 4 ///< Don't print errors to std::cerr.
}; };
/// @} /// @}

View File

@ -54,7 +54,7 @@ Linker::error(const std::string& message) {
bool bool
Linker::warning(const std::string& message) { Linker::warning(const std::string& message) {
Error = message; Error = message;
if (!(Flags&QuietErrors)) if (!(Flags&QuietWarnings))
cerr << ProgramName << ": warning: " << message << "\n"; cerr << ProgramName << ": warning: " << message << "\n";
return false; return false;
} }