diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2018-09-13 13:13:50 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2018-09-13 13:13:50 +0000 |
commit | 64c901d2b11e75a89f8f69a03f55e67f59b617b5 (patch) | |
tree | 95b4ebde843dc847d47a9979c3e544fb94e4b3ab /llvm/test/CodeGen/Generic | |
parent | 45be5cf0edd40426b6e8814d9b6814a6b62c722e (diff) | |
download | bcm5719-llvm-64c901d2b11e75a89f8f69a03f55e67f59b617b5.tar.gz bcm5719-llvm-64c901d2b11e75a89f8f69a03f55e67f59b617b5.zip |
[MC/Dwarf] Unclamp DWARF linetables format on Darwin.
In r319995, we fixed the line table format to version 2 on Darwin
because dsymutil didn't yet understand the new format which caused test
failures for the LLDB bots. This has been resolved in the meantime so
there's no reason to keep this limitation.
rdar://problem/35968332
llvm-svn: 342136
Diffstat (limited to 'llvm/test/CodeGen/Generic')
-rw-r--r-- | llvm/test/CodeGen/Generic/dwarf-md5.ll | 3 | ||||
-rw-r--r-- | llvm/test/CodeGen/Generic/dwarf-source.ll | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/Generic/dwarf-md5.ll b/llvm/test/CodeGen/Generic/dwarf-md5.ll index c55d7d7725a..2fc25f3a3ed 100644 --- a/llvm/test/CodeGen/Generic/dwarf-md5.ll +++ b/llvm/test/CodeGen/Generic/dwarf-md5.ll @@ -1,8 +1,5 @@ ; MD5 checksums provided by IR should be passed through to asm. ; They'll be emitted to an object file only for DWARF 5 or later. -; -; Note that on Darwin for DWARF 4 or earlier, the line table version is clamped -; to version 2. However that doesn't affect the output checked in this test. ; REQUIRES: object-emission ; RUN: %llc_dwarf -dwarf-version 4 -filetype=asm -o - %s | FileCheck %s --check-prefix=ASM-4 diff --git a/llvm/test/CodeGen/Generic/dwarf-source.ll b/llvm/test/CodeGen/Generic/dwarf-source.ll index 7b7d9c59b76..41441110f2f 100644 --- a/llvm/test/CodeGen/Generic/dwarf-source.ll +++ b/llvm/test/CodeGen/Generic/dwarf-source.ll @@ -1,8 +1,5 @@ ; Source text provided by IR should be passed through to asm. ; It is emitted to an object file only for DWARF 5 or later. -; -; Note that on Darwin for DWARF 4 or earlier, the line table version is clamped -; to version 2. However that doesn't affect the output checked in this test. ; REQUIRES: object-emission ; RUN: %llc_dwarf -dwarf-version 4 -filetype=asm -o - %s | FileCheck %s --check-prefix=ASM-4 |