mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
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
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user