diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-11-18 02:04:25 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-11-18 02:04:25 +0000 |
commit | 67c6ab88653289579cca588adbac1ccf05dd7f64 (patch) | |
tree | fdd9a43982399db48e29af95887b5f46c006197c /llvm/lib/MC | |
parent | fb340102582bb975698c20aefad833a07243c4c6 (diff) | |
download | bcm5719-llvm-67c6ab88653289579cca588adbac1ccf05dd7f64.tar.gz bcm5719-llvm-67c6ab88653289579cca588adbac1ccf05dd7f64.zip |
Change CodeGen to use .loc directives. This produces a lot more readable output
and testing is easier. A good example is the unknown-location.ll test that
now can just look for ".loc 1 0 0". We also don't use a DW_LNE_set_address for
every address change anymore.
llvm-svn: 119613
Diffstat (limited to 'llvm/lib/MC')
-rw-r--r-- | llvm/lib/MC/MCAsmInfo.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCAsmInfo.cpp b/llvm/lib/MC/MCAsmInfo.cpp index e8902e75b06..807aac26b02 100644 --- a/llvm/lib/MC/MCAsmInfo.cpp +++ b/llvm/lib/MC/MCAsmInfo.cpp @@ -64,7 +64,6 @@ MCAsmInfo::MCAsmInfo() { HiddenVisibilityAttr = MCSA_Hidden; ProtectedVisibilityAttr = MCSA_Protected; HasLEB128 = false; - HasDotLocAndDotFile = false; SupportsDebugInformation = false; ExceptionsType = ExceptionHandling::None; DwarfRequiresFrameSection = true; |