Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Stop messing with the 'g' group of options in CompilerInvocation. | Douglas Katzman | 2015-10-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | With this change, most 'g' options are rejected by CompilerInvocation. They remain only as Driver options. The new way to request debug info from cc1 is with "-debug-info-kind={line-tables-only|limited|standalone}" and "-dwarf-version={2|3|4}". In the absence of a command-line option to specify Dwarf version, the Toolchain decides it, rather than placing Toolchain-specific logic in CompilerInvocation. Also fix a bug in the Windows compatibility argument parsing in which the "rightmost argument wins" principle failed. Differential Revision: http://reviews.llvm.org/D13221 llvm-svn: 249655 | ||||
* | IR: Make metadata typeless in assembly, clang side | Duncan P. N. Exon Smith | 2014-12-15 | 1 | -1/+1 |
| | | | | | | Match LLVM changes from r224257. llvm-svn: 224259 | ||||
* | relax this testcase to not depend on a specific alignment. | Adrian Prantl | 2014-11-21 | 1 | -1/+1 |
| | | | | llvm-svn: 222490 | ||||
* | Debug info for blocks: Fix a bug caught by the Verifier. | Adrian Prantl | 2014-11-21 | 1 | -0/+26 |
When emitting nested block definitions, the insert-at-point variant of DIBuilder::insertDeclare() could be called with the insertion point set to the end-of-BasicBlock sentinel, causing the parent pointer of the CallInst to be set to the intentionally bogus value of the sentinel. Fixed by conditionally invoking the correct version of insertDeclare(). rdar://problem/19034882 llvm-svn: 222487 |