From 5d9759bd04f2aa9f95067ea32f67a8ad5cac4c8f Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Sat, 25 Oct 2008 17:57:20 +0000 Subject: Make comments and code for QuietWarnings and QuietErrors actually correspond to what their names suggest. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58146 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Linker/Linker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Linker') diff --git a/lib/Linker/Linker.cpp b/lib/Linker/Linker.cpp index ef242e5c79..d6737721d2 100644 --- a/lib/Linker/Linker.cpp +++ b/lib/Linker/Linker.cpp @@ -54,7 +54,7 @@ Linker::error(const std::string& message) { bool Linker::warning(const std::string& message) { Error = message; - if (!(Flags&QuietErrors)) + if (!(Flags&QuietWarnings)) cerr << ProgramName << ": warning: " << message << "\n"; return false; } -- cgit v1.2.3