summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-05-16 00:32:52 +0000
committerEric Christopher <echristo@gmail.com>2014-05-16 00:32:52 +0000
commit9364e63d79c5efb8b9a10df7f3f3f09a9c9cd2a4 (patch)
tree297fedb4903efe6339e97d2ba66f1a46692e8ba2 /include
parenta9f15ce71f107768f25958e721008034398d6a3e (diff)
downloadllvm-9364e63d79c5efb8b9a10df7f3f3f09a9c9cd2a4.tar.gz
llvm-9364e63d79c5efb8b9a10df7f3f3f09a9c9cd2a4.tar.bz2
llvm-9364e63d79c5efb8b9a10df7f3f3f09a9c9cd2a4.tar.xz
Remove the Options query functions and just access our Options directly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208937 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetMachine.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/llvm/Target/TargetMachine.h b/include/llvm/Target/TargetMachine.h
index d154a9040b..bf6963b796 100644
--- a/include/llvm/Target/TargetMachine.h
+++ b/include/llvm/Target/TargetMachine.h
@@ -162,21 +162,6 @@ public:
bool requiresStructuredCFG() const { return RequireStructuredCFG; }
void setRequiresStructuredCFG(bool Value) { RequireStructuredCFG = Value; }
- /// hasMCRelaxAll - Check whether all machine code instructions should be
- /// relaxed.
- bool hasMCRelaxAll() const { return Options.MCOptions.MCRelaxAll; }
-
- /// hasMCSaveTempLabels - Check whether temporary labels will be preserved
- /// (i.e., not treated as temporary).
- bool hasMCSaveTempLabels() const { return Options.MCOptions.MCSaveTempLabels; }
-
- /// hasMCNoExecStack - Check whether an executable stack is not needed.
- bool hasMCNoExecStack() const { return Options.MCOptions.MCNoExecStack; }
-
- /// hasMCUseDwarfDirectory - Check whether we should use .file directives with
- /// explicit directories.
- bool hasMCUseDwarfDirectory() const { return Options.MCOptions.MCUseDwarfDirectory; }
-
/// getRelocationModel - Returns the code generation relocation model. The
/// choices are static, PIC, and dynamic-no-pic, and target default.
Reloc::Model getRelocationModel() const;