aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/debug-info-packed-struct.c
AgeCommit message (Collapse)AuthorFilesLines
2016-10-20DebugInfo: pass alignment value only if it was forcedVictor Leschuk1-8/+8
Preparation to implement DW_AT_alignment support: - We pass non-zero align value to DIBuilder only when alignment was forced - Modify tests to match this change Differential Revision: https://reviews.llvm.org/D24426 llvm-svn: 284679
2016-09-13Update Clang for D20147 ("DebugInfo: New metadata representation for global ↵Peter Collingbourne1-2/+2
variables.") Differential Revision: http://reviews.llvm.org/D20415 llvm-svn: 281285
2016-06-30[CodeView] Implement support for bitfields in ClangDavid Majnemer1-4/+4
Emit the underlying storage offset in addition to the starting bit position of the field. This fixes PR28162. Differential Revision: http://reviews.llvm.org/D21783 llvm-svn: 274201
2015-10-08Stop messing with the 'g' group of options in CompilerInvocation.Douglas Katzman1-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
2015-06-26Add a testcase for bitfield debug info.Adrian Prantl1-0/+91
llvm-svn: 240833