diff options
author | Eric Christopher <echristo@gmail.com> | 2014-05-20 23:59:50 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-05-20 23:59:50 +0000 |
commit | eb719728877b4f32534816fcacda4b4ee45b0d83 (patch) | |
tree | a8b3327fbf4feb679578705e1763c47f110bba44 /llvm/lib/MC | |
parent | 5719614b775c26fe2e249d9abacaf1f1ed126dd8 (diff) | |
download | bcm5719-llvm-eb719728877b4f32534816fcacda4b4ee45b0d83.tar.gz bcm5719-llvm-eb719728877b4f32534816fcacda4b4ee45b0d83.zip |
Move the verbose asm option to be part of the options struct and
set appropriately.
llvm-svn: 209258
Diffstat (limited to 'llvm/lib/MC')
-rw-r--r-- | llvm/lib/MC/MCTargetOptions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCTargetOptions.cpp b/llvm/lib/MC/MCTargetOptions.cpp index e1b6a5889d8..8e946d57f7f 100644 --- a/llvm/lib/MC/MCTargetOptions.cpp +++ b/llvm/lib/MC/MCTargetOptions.cpp @@ -14,6 +14,6 @@ namespace llvm { MCTargetOptions::MCTargetOptions() : SanitizeAddress(false), MCRelaxAll(false), MCNoExecStack(false), MCSaveTempLabels(false), MCUseDwarfDirectory(false), - ShowMCEncoding(false), ShowMCInst(false) {} + ShowMCEncoding(false), ShowMCInst(false), AsmVerbose(false) {} } // end namespace llvm |