aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC/MCSectionELF.h
diff options
context:
space:
mode:
authorJan Sjödin <jan_sjodin@yahoo.com>2011-03-11 19:37:02 +0000
committerJan Sjödin <jan_sjodin@yahoo.com>2011-03-11 19:37:02 +0000
commite4f6d7461aea7308e85c219c1cea5bd6059d4841 (patch)
tree240eef309266aae40967a4ba898115e86288d267 /include/llvm/MC/MCSectionELF.h
parent950d3db5f478a84242a90cafce0d8dfc4f8b1152 (diff)
downloadexternal_llvm-e4f6d7461aea7308e85c219c1cea5bd6059d4841.zip
external_llvm-e4f6d7461aea7308e85c219c1cea5bd6059d4841.tar.gz
external_llvm-e4f6d7461aea7308e85c219c1cea5bd6059d4841.tar.bz2
Remove optimization emitting a reference insted of label difference, since it can create more relocations. Removed isBaseAddressKnownZero method, because it is no longer used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127478 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCSectionELF.h')
-rw-r--r--include/llvm/MC/MCSectionELF.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/MC/MCSectionELF.h b/include/llvm/MC/MCSectionELF.h
index c82de71..2695172 100644
--- a/include/llvm/MC/MCSectionELF.h
+++ b/include/llvm/MC/MCSectionELF.h
@@ -66,12 +66,6 @@ public:
virtual bool UseCodeAlign() const;
virtual bool isVirtualSection() const;
- /// isBaseAddressKnownZero - We know that non-allocatable sections (like
- /// debug info) have a base of zero.
- virtual bool isBaseAddressKnownZero() const {
- return (getFlags() & ELF::SHF_ALLOC) == 0;
- }
-
static bool classof(const MCSection *S) {
return S->getVariant() == SV_ELF;
}