summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/Mips/MipsSubtarget.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-13 06:28:06 +0000
committerChris Lattner <sabre@nondot.org>2009-08-13 06:28:06 +0000
commit68535f7603232c7ab1bb4355a2f91ca2bbe2d02e (patch)
treeae08936f12116256b47671c910f368156ccdd715 /llvm/lib/Target/Mips/MipsSubtarget.h
parent33733c0342c91fef596ee6e3a99164c6790ebeca (diff)
downloadbcm5719-llvm-68535f7603232c7ab1bb4355a2f91ca2bbe2d02e.tar.gz
bcm5719-llvm-68535f7603232c7ab1bb4355a2f91ca2bbe2d02e.zip
reintroduce support for Mips "small" section handling. This is
implemented somewhat differently than before, but it should have the same functionality and the previous testcase passes again. llvm-svn: 78900
Diffstat (limited to 'llvm/lib/Target/Mips/MipsSubtarget.h')
-rw-r--r--llvm/lib/Target/Mips/MipsSubtarget.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Target/Mips/MipsSubtarget.h b/llvm/lib/Target/Mips/MipsSubtarget.h
index a254b6562c4..1d6f87d8c06 100644
--- a/llvm/lib/Target/Mips/MipsSubtarget.h
+++ b/llvm/lib/Target/Mips/MipsSubtarget.h
@@ -60,10 +60,6 @@ protected:
// isLinux - Target system is Linux. Is false we consider ELFOS for now.
bool IsLinux;
- // Put global and static items less than or equal to SSectionThreshold
- // bytes into the small data or bss section. The default is 8.
- unsigned SSectionThreshold;
-
/// Features related to the presence of specific instructions.
// HasSEInReg - SEB and SEH (signext in register) instructions.
@@ -113,7 +109,6 @@ public:
bool isNotSingleFloat() const { return !IsSingleFloat; };
bool hasVFPU() const { return HasVFPU; };
bool isLinux() const { return IsLinux; };
- unsigned getSSectionThreshold() const { return SSectionThreshold; }
/// Features related to the presence of specific instructions.
bool hasSEInReg() const { return HasSEInReg; };
OpenPOWER on IntegriCloud