aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/MC/MCTargetOptions.cpp
diff options
context:
space:
mode:
authorColin LeMahieu <colinl@codeaurora.org>2015-07-27 22:39:14 +0000
committerColin LeMahieu <colinl@codeaurora.org>2015-07-27 22:39:14 +0000
commitfe36f83b119784b0b9a8da3730271bccd199b29e (patch)
tree345af55b4672381a6468df79927253030deadfef /llvm/lib/MC/MCTargetOptions.cpp
parent7bdf4f2eb2c3404fb97a08c43f656947821f0f0e (diff)
downloadllvm-fe36f83b119784b0b9a8da3730271bccd199b29e.zip
llvm-fe36f83b119784b0b9a8da3730271bccd199b29e.tar.gz
llvm-fe36f83b119784b0b9a8da3730271bccd199b29e.tar.bz2
[llvm-mc] Add --no-warn flag with -W alias to disable outputting warnings while assembling.
llvm-svn: 243338
Diffstat (limited to 'llvm/lib/MC/MCTargetOptions.cpp')
-rw-r--r--llvm/lib/MC/MCTargetOptions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCTargetOptions.cpp b/llvm/lib/MC/MCTargetOptions.cpp
index 1258d9e..64796af 100644
--- a/llvm/lib/MC/MCTargetOptions.cpp
+++ b/llvm/lib/MC/MCTargetOptions.cpp
@@ -14,7 +14,7 @@ namespace llvm {
MCTargetOptions::MCTargetOptions()
: SanitizeAddress(false), MCRelaxAll(false), MCNoExecStack(false),
- MCFatalWarnings(false), MCSaveTempLabels(false),
+ MCFatalWarnings(false), MCNoWarn(false), MCSaveTempLabels(false),
MCUseDwarfDirectory(false), ShowMCEncoding(false), ShowMCInst(false),
AsmVerbose(false), DwarfVersion(0), ABIName() {}