summaryrefslogtreecommitdiff
path: root/include/llvm/Linker.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-10-25 17:57:20 +0000
committerDan Gohman <gohman@apple.com>2008-10-25 17:57:20 +0000
commit5d9759bd04f2aa9f95067ea32f67a8ad5cac4c8f (patch)
tree7b4329143ace41beec3b7805676b1447c47f0b82 /include/llvm/Linker.h
parent048ca55dc1b667b99060ce16a4891b36e950cf73 (diff)
downloadllvm-5d9759bd04f2aa9f95067ea32f67a8ad5cac4c8f.tar.gz
llvm-5d9759bd04f2aa9f95067ea32f67a8ad5cac4c8f.tar.bz2
llvm-5d9759bd04f2aa9f95067ea32f67a8ad5cac4c8f.tar.xz
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
Diffstat (limited to 'include/llvm/Linker.h')
-rw-r--r--include/llvm/Linker.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Linker.h b/include/llvm/Linker.h
index 1e817b4674..bcba476b34 100644
--- a/include/llvm/Linker.h
+++ b/include/llvm/Linker.h
@@ -52,8 +52,8 @@ class Linker {
/// linker.
enum ControlFlags {
Verbose = 1, ///< Print to std::cerr what steps the linker is taking
- QuietWarnings = 2, ///< Don't print errors and warnings to std::cerr.
- QuietErrors = 4 ///< Indicate that this link is for a native executable
+ QuietWarnings = 2, ///< Don't print warnings to std::cerr.
+ QuietErrors = 4 ///< Don't print errors to std::cerr.
};
/// @}