summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsSubtarget.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-24 03:14:35 +0000
committerChris Lattner <sabre@nondot.org>2009-07-24 03:14:35 +0000
commitd94061f1239cf6c9f8a841f8b208158be134a814 (patch)
treebe3916922a3d107edc551097d88e3930f9b60ac1 /lib/Target/Mips/MipsSubtarget.cpp
parent013e6b63099eed7743150a57dd9eed6868b013d6 (diff)
downloadllvm-d94061f1239cf6c9f8a841f8b208158be134a814.tar.gz
llvm-d94061f1239cf6c9f8a841f8b208158be134a814.tar.bz2
llvm-d94061f1239cf6c9f8a841f8b208158be134a814.tar.xz
remove more remnants of small section support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76936 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsSubtarget.cpp')
-rw-r--r--lib/Target/Mips/MipsSubtarget.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/Target/Mips/MipsSubtarget.cpp b/lib/Target/Mips/MipsSubtarget.cpp
index 4245f274f8..87c2208e9d 100644
--- a/lib/Target/Mips/MipsSubtarget.cpp
+++ b/lib/Target/Mips/MipsSubtarget.cpp
@@ -24,10 +24,6 @@ NotABICall("disable-mips-abicall", cl::Hidden,
static cl::opt<bool>
AbsoluteCall("enable-mips-absolute-call", cl::Hidden,
cl::desc("Enable absolute call within abicall"));
-static cl::opt<unsigned>
-SSThreshold("mips-ssection-threshold", cl::Hidden,
- cl::desc("Small data and bss section threshold size (default=8)"),
- cl::init(8));
MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M,
const std::string &FS, bool little) :
@@ -43,9 +39,6 @@ MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M,
ParseSubtargetFeatures(FS, CPU);
const std::string& TT = M.getTargetTriple();
- // Small section size threshold
- SSectionThreshold = SSThreshold;
-
// Is the target system Linux ?
if (TT.find("linux") == std::string::npos)
IsLinux = false;