diff options
author | Devang Patel <dpatel@apple.com> | 2010-12-02 00:22:29 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-12-02 00:22:29 +0000 |
commit | 0be938e38916cecd4d3406c8531a341b2e1c9ec5 (patch) | |
tree | 9f31b3a08888bdb161e75ce79ed423578bfcccc2 /lib | |
parent | 1bf891ae6e174ac92c1091be0c62891f4676beb8 (diff) | |
download | external_llvm-0be938e38916cecd4d3406c8531a341b2e1c9ec5.zip external_llvm-0be938e38916cecd4d3406c8531a341b2e1c9ec5.tar.gz external_llvm-0be938e38916cecd4d3406c8531a341b2e1c9ec5.tar.bz2 |
Revert r120580.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120630 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/X86/X86MCAsmInfo.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/Target/X86/X86MCAsmInfo.cpp b/lib/Target/X86/X86MCAsmInfo.cpp index 8db12cc..f45fdf5 100644 --- a/lib/Target/X86/X86MCAsmInfo.cpp +++ b/lib/Target/X86/X86MCAsmInfo.cpp @@ -67,20 +67,6 @@ X86MCAsmInfoDarwin::X86MCAsmInfoDarwin(const Triple &Triple) { SupportsDebugInformation = true; DwarfUsesInlineInfoSection = true; - // Disable debugging information for older targets that do not support - // .loc and are broken by regressions in .debug_line entries. - if (Triple.getOS() == Triple::Darwin) { - switch (Triple.getDarwinMajorNumber()) { - case 7: - case 8: - case 9: - SupportsDebugInformation = false; - break; - default: - break; - } - } - // Exceptions handling ExceptionsType = ExceptionHandling::Dwarf; } |