diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-04-22 22:49:11 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-04-22 22:49:11 +0000 |
commit | 034ca0fe418fcdedc7bc9f4f4efeaf1783ff41c7 (patch) | |
tree | 5d967a3a5ea791afeb216ed5d51a68ebe93699d3 /llvm/lib/MC/MCAsmInfo.cpp | |
parent | 04d4e9312c69ef1fa4896e9289beeb3e763e7415 (diff) | |
download | bcm5719-llvm-034ca0fe418fcdedc7bc9f4f4efeaf1783ff41c7.tar.gz bcm5719-llvm-034ca0fe418fcdedc7bc9f4f4efeaf1783ff41c7.zip |
Remove unused DwarfSectionOffsetDirective string
The value isn't actually used, and setting it emits a COFF specific
directive.
llvm-svn: 180064
Diffstat (limited to 'llvm/lib/MC/MCAsmInfo.cpp')
-rw-r--r-- | llvm/lib/MC/MCAsmInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCAsmInfo.cpp b/llvm/lib/MC/MCAsmInfo.cpp index 51bb4357102..9e6088490fd 100644 --- a/llvm/lib/MC/MCAsmInfo.cpp +++ b/llvm/lib/MC/MCAsmInfo.cpp @@ -87,10 +87,10 @@ MCAsmInfo::MCAsmInfo() { SupportsDebugInformation = false; ExceptionsType = ExceptionHandling::None; DwarfUsesInlineInfoSection = false; - DwarfSectionOffsetDirective = 0; DwarfUsesRelocationsAcrossSections = true; DwarfRegNumForCFI = false; HasMicrosoftFastStdCallMangling = false; + NeedsDwarfSectionOffsetDirective = false; } MCAsmInfo::~MCAsmInfo() { |