diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-04 23:22:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-04 23:22:29 +0000 |
commit | 324c86600d2855476dcfe603d5272049bc1b84f4 (patch) | |
tree | 62d343d0a4910d0d98d545b33b66beebe8e2754e /llvm/lib/MC/MCAsmInfoCOFF.cpp | |
parent | d442aa368dcc43be6d81b19760f8ea130778d4f7 (diff) | |
download | bcm5719-llvm-324c86600d2855476dcfe603d5272049bc1b84f4.tar.gz bcm5719-llvm-324c86600d2855476dcfe603d5272049bc1b84f4.zip |
eliminate the magic AbsoluteDebugSectionOffsets MAI hook,
which is really a property of the section being referenced.
Add a predicate to MCSection to replace it.
Yay for reduction in magic.
llvm-svn: 100367
Diffstat (limited to 'llvm/lib/MC/MCAsmInfoCOFF.cpp')
-rw-r--r-- | llvm/lib/MC/MCAsmInfoCOFF.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCAsmInfoCOFF.cpp b/llvm/lib/MC/MCAsmInfoCOFF.cpp index e9bc8fa9c3e..7fc7d7abb23 100644 --- a/llvm/lib/MC/MCAsmInfoCOFF.cpp +++ b/llvm/lib/MC/MCAsmInfoCOFF.cpp @@ -31,7 +31,6 @@ MCAsmInfoCOFF::MCAsmInfoCOFF() { // Set up DWARF directives HasLEB128 = true; // Target asm supports leb128 directives (little-endian) - AbsoluteDebugSectionOffsets = true; SupportsDebugInformation = true; DwarfSectionOffsetDirective = "\t.secrel32\t"; HasMicrosoftFastStdCallMangling = true; |