diff options
author | Eric Christopher <echristo@gmail.com> | 2014-05-15 01:08:00 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-05-15 01:08:00 +0000 |
commit | 737e089bda2756c9bb23ee2b9d256257b6100602 (patch) | |
tree | a35bd018687d7420e8655d88c0d80dd115652ba7 /llvm/lib/Target/TargetMachine.cpp | |
parent | 1f393c3eaf57b8bbfb213c9b046c18916200a667 (diff) | |
download | bcm5719-llvm-737e089bda2756c9bb23ee2b9d256257b6100602.tar.gz bcm5719-llvm-737e089bda2756c9bb23ee2b9d256257b6100602.zip |
Move the TargetMachine MC options to MCTargetOptions. No functional
change.
llvm-svn: 208832
Diffstat (limited to 'llvm/lib/Target/TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/TargetMachine.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp index 741209162a5..d60a70846a7 100644 --- a/llvm/lib/Target/TargetMachine.cpp +++ b/llvm/lib/Target/TargetMachine.cpp @@ -55,10 +55,6 @@ TargetMachine::TargetMachine(const Target &T, const TargetOptions &Options) : TheTarget(T), TargetTriple(TT), TargetCPU(CPU), TargetFS(FS), CodeGenInfo(nullptr), AsmInfo(nullptr), - MCRelaxAll(false), - MCNoExecStack(false), - MCSaveTempLabels(false), - MCUseDwarfDirectory(false), RequireStructuredCFG(false), Options(Options) { } |