summaryrefslogtreecommitdiffstats
path: root/lld/test/ELF/gdb-index-empty.s
Commit message (Collapse)AuthorAgeFilesLines
* Remove trailing whitespace.Rui Ueyama2017-12-121-1/+1
| | | | llvm-svn: 320520
* Update testcases for llvm-dwarfdump command line interface changeAdrian Prantl2017-09-111-1/+1
| | | | llvm-svn: 312974
* [LLD] Mark a number of x86 only tests to require x86Jon Chesterfield2017-07-181-0/+1
| | | | | | | | | | | Noticed while testing for an out of tree target. There are probably more tests that should be so marked. I'm not sure who owns these tests so I've added a few names I recognise from the recent history. With advice from probinson, ruiu, rafael and dramatically improved by davidb. Thank you all! Differential Revision: https://reviews.llvm.org/D34685 llvm-svn: 308335
* [ELF] - Simplify gdb-index-empty.sGeorge Rimar2017-06-091-102/+66
| | | | | | | | Just simplifies existent test. Differential revision: https://reviews.llvm.org/D33986 llvm-svn: 305073
* ELF: --gdb-index: Change findSection to return an InputSection.Peter Collingbourne2017-05-151-0/+116
We should only ever expect this function to return a regular InputSection; I would not expect a function definition to be in a MergeInputSection or EhInputSection. We were previously crashing in writeTo if this function returned a section that was not an InputSection because we do not set OutSec for such sections. This can happen in practice if a function is defined in an empty section which shares its offset-in-file with a MergeInputSection, as in the provided test case. A better fix for this bug would be to fix the DWARFUnit::collectAddressRanges() interface to provide section information (see D33183), but this at least fixes the crash. Differential Revision: https://reviews.llvm.org/D33176 llvm-svn: 303089
OpenPOWER on IntegriCloud