about summary refs log tree commit diff
path: root/src/test/debuginfo/packed-struct.rs
AgeCommit message (Collapse)AuthorLines
2014-08-20librustc: handle repr on structs, require it for ffi, unify with packedCorey Richardson-3/+3
As of RFC 18, struct layout is undefined. Opting into a C-compatible struct layout is now down with #[repr(C)]. For consistency, specifying a packed layout is now also down with #[repr(packed)]. Both can be specified. To fix errors caused by this, just add #[repr(C)] to the structs, and change #[packed] to #[repr(packed)] Closes #14309 [breaking-change]
2014-07-16debuginfo: Add LLDB autotests to debuginfo test suite.Michael Woerister-1/+27
This commit adds LLDB autotests to the test suite but does not activate them by default yet.
2014-05-07debuginfo: Split debuginfo autotests into debuginfo-gdb and debuginfo-lldbMichael Woerister-0/+107