summaryrefslogtreecommitdiffstats
path: root/clang/test/Driver/codeview-column-info.c
Commit message (Collapse)AuthorAgeFilesLines
* [Driver] Don't add -dwarf-column-info when using -gcodeview on non-msvc targetsMartin Storsjo2018-05-081-0/+2
| | | | | | | | | | | | | | -dwarf-column-info is omitted if -gcodeview is specified for msvc targets at the moment, but since -gcodeview is an option that can be specified for any target, there's little reason to restrict this handling to msvc targets. This allows getting proper codeview debug info by passing -gcodeview for e.g. MinGW targets as well. Differential Revision: https://reviews.llvm.org/D46287 llvm-svn: 331807
* [Driver] Fix codeview-column-info on macOSShoaib Meenai2018-02-271-2/+1
| | | | | | | | | | | macOS home directory paths begin with /Users, and clang-cl interprets the /U portion as a macro undefine rather than a path, causing test failures on macOS. Use a -- to explicitly treat the input file as a path and fix the test. This effectively reverts r326168 and adds an alternative fix. llvm-svn: 326171
* Attempt to fix greendragon bot after r326141Adam Nemet2018-02-271-0/+1
| | | | llvm-svn: 326168
* Fix codeview-column-info.c test with a tripleReid Kleckner2018-02-261-3/+3
| | | | llvm-svn: 326144
* Re-land "Emit proper CodeView when -gcodeview is passed without the cl driver."Reid Kleckner2018-02-261-0/+13
| | | | | | | Reverts r326116 and re-lands r326113 with a fix to ASan so that it enables column info in its test suite. llvm-svn: 326141
* Revert "Emit proper CodeView when -gcodeview is passed without the cl driver."Zachary Turner2018-02-261-13/+0
| | | | | | | | | | This reverts commit e17911006548518634fad66bb8648bcad49a1d64. This is failing on ASAN bots because asan expects column info, and it's also failing on some linux bots for unknown reasons which i need to investigate. llvm-svn: 326116
* Emit proper CodeView when -gcodeview is passed without the cl driver.Zachary Turner2018-02-261-0/+13
Windows debuggers don't work properly when column info is emitted with lines. We handled this by checking if the driver mode was cl, but it's possible to cause the gcc driver to emit codeview as well, and in that path we were emitting column info with codeview. Differential Revision: https://reviews.llvm.org/D43700 llvm-svn: 326113
OpenPOWER on IntegriCloud