summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCAsmInfo.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2012-06-22 13:32:49 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2012-06-22 13:32:49 +0000
commit9cfc799171171e0cc26f64a60ba36bef8e889556 (patch)
tree8aa97ab5a4a53f09a3358af062a3a1948c21c890 /include/llvm/MC/MCAsmInfo.h
parent2241e51406f7bae369d6103cf3464e70f74c4af9 (diff)
downloadllvm-9cfc799171171e0cc26f64a60ba36bef8e889556.tar.gz
llvm-9cfc799171171e0cc26f64a60ba36bef8e889556.tar.bz2
llvm-9cfc799171171e0cc26f64a60ba36bef8e889556.tar.xz
Remove another duplicated variable. We only need one to tell us if the linker
knows dwarf or not. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158993 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCAsmInfo.h')
-rw-r--r--include/llvm/MC/MCAsmInfo.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
index a353565d5d..9f5230b9c8 100644
--- a/include/llvm/MC/MCAsmInfo.h
+++ b/include/llvm/MC/MCAsmInfo.h
@@ -319,10 +319,6 @@ namespace llvm {
/// uses relocations for references to other .debug_* sections.
bool DwarfUsesRelocationsAcrossSections;
- /// DwarfUsesRelocationsForStringPool - True if this Dwarf output must use
- /// relocations to refer to entries in the string pool.
- bool DwarfUsesRelocationsForStringPool;
-
/// DwarfRegNumForCFI - True if dwarf register numbers are printed
/// instead of symbolic register names in .cfi_* directives.
bool DwarfRegNumForCFI; // Defaults to false;
@@ -548,9 +544,6 @@ namespace llvm {
bool doesDwarfUseRelocationsAcrossSections() const {
return DwarfUsesRelocationsAcrossSections;
}
- bool doesDwarfUseRelocationsForStringPool() const {
- return DwarfUsesRelocationsForStringPool;
- }
bool useDwarfRegNumForCFI() const {
return DwarfRegNumForCFI;
}