summaryrefslogtreecommitdiff
path: root/lib/MC
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-05-15 23:27:49 +0000
committerEric Christopher <echristo@gmail.com>2014-05-15 23:27:49 +0000
commit6d22500de37947705c62068471fe56b4a19ec608 (patch)
tree924a878adfdb6af2095c63e6135c66315926b9e8 /lib/MC
parent8fde27bceb0ab80157d99d34ebeba25c2fe414c9 (diff)
downloadllvm-6d22500de37947705c62068471fe56b4a19ec608.tar.gz
llvm-6d22500de37947705c62068471fe56b4a19ec608.tar.bz2
llvm-6d22500de37947705c62068471fe56b4a19ec608.tar.xz
Move more MC options into the MCTargetOptions structure.
No functional change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208932 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC')
-rw-r--r--lib/MC/MCTargetOptions.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/MC/MCTargetOptions.cpp b/lib/MC/MCTargetOptions.cpp
index 0bcfce9eac..e1b6a5889d 100644
--- a/lib/MC/MCTargetOptions.cpp
+++ b/lib/MC/MCTargetOptions.cpp
@@ -13,6 +13,7 @@ namespace llvm {
MCTargetOptions::MCTargetOptions()
: SanitizeAddress(false), MCRelaxAll(false), MCNoExecStack(false),
- MCSaveTempLabels(false), MCUseDwarfDirectory(false) {}
+ MCSaveTempLabels(false), MCUseDwarfDirectory(false),
+ ShowMCEncoding(false), ShowMCInst(false) {}
} // end namespace llvm