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/MCAsmInfoCOFF.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/MCAsmInfoCOFF.cpp')
-rw-r--r-- | llvm/lib/MC/MCAsmInfoCOFF.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCAsmInfoCOFF.cpp b/llvm/lib/MC/MCAsmInfoCOFF.cpp index fd79193073d..33350d99a6c 100644 --- a/llvm/lib/MC/MCAsmInfoCOFF.cpp +++ b/llvm/lib/MC/MCAsmInfoCOFF.cpp @@ -36,8 +36,8 @@ MCAsmInfoCOFF::MCAsmInfoCOFF() { // Set up DWARF directives HasLEB128 = true; // Target asm supports leb128 directives (little-endian) SupportsDebugInformation = true; - DwarfSectionOffsetDirective = "\t.secrel32\t"; HasMicrosoftFastStdCallMangling = true; + NeedsDwarfSectionOffsetDirective = true; } void MCAsmInfoMicrosoft::anchor() { } |