summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-05-21 00:20:01 +0000
committerEric Christopher <echristo@gmail.com>2014-05-21 00:20:01 +0000
commite648d75c607378d55765103c2ac554a2964b6280 (patch)
tree82a1069a4038ba9f1023a95afe755589e2d64ce0 /include
parent110260377ad3156467a107f6f7b2544ed3b2d173 (diff)
downloadllvm-e648d75c607378d55765103c2ac554a2964b6280.tar.gz
llvm-e648d75c607378d55765103c2ac554a2964b6280.tar.bz2
llvm-e648d75c607378d55765103c2ac554a2964b6280.tar.xz
This command line option is only used in one place. Move it there and
rename it to something more descriptive. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209263 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCTargetOptionsCommandFlags.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/MC/MCTargetOptionsCommandFlags.h b/include/llvm/MC/MCTargetOptionsCommandFlags.h
index 55ac142157..24e683f617 100644
--- a/include/llvm/MC/MCTargetOptionsCommandFlags.h
+++ b/include/llvm/MC/MCTargetOptionsCommandFlags.h
@@ -40,8 +40,6 @@ cl::opt<bool> EnableDwarfDirectory(
cl::opt<bool> NoExecStack("mc-no-exec-stack",
cl::desc("File doesn't need an exec stack"));
-cl::opt<bool> SaveTempLabels("L", cl::desc("Don't discard temporary labels"));
-
cl::opt<bool> ShowMCEncoding("show-mc-encoding", cl::Hidden,
cl::desc("Show encoding in .s output"));
cl::opt<bool> ShowMCInst("show-mc-inst", cl::Hidden,
@@ -57,7 +55,6 @@ static inline MCTargetOptions InitMCTargetOptionsFromFlags() {
Options.MCRelaxAll = RelaxAll;
Options.MCUseDwarfDirectory = EnableDwarfDirectory;
Options.MCNoExecStack = NoExecStack;
- Options.MCSaveTempLabels = SaveTempLabels;
Options.ShowMCEncoding = ShowMCEncoding;
Options.ShowMCInst = ShowMCInst;
Options.AsmVerbose = AsmVerbose;