about summary refs log tree commit diff
path: root/src/test/debuginfo/function-prologue-stepping-no-split-stack.rs
AgeCommit message (Collapse)AuthorLines
2014-10-09Rename the no_split_stack attribute to no_stack_checkKeegan McAllister-363/+0
The old name is misleading as we haven't had segmented stacks in quite some time. But we still recognize it, with a deprecation warning.
2014-07-16debuginfo: Add LLDB autotests to debuginfo test suite.Michael Woerister-1/+118
This commit adds LLDB autotests to the test suite but does not activate them by default yet.
2014-06-29librustc: Remove the fallback to `int` for integers and `f64` forPatrick Walton-1/+1
floating point numbers for real. This will break code that looks like: let mut x = 0; while ... { x += 1; } println!("{}", x); Change that code to: let mut x = 0i; while ... { x += 1; } println!("{}", x); Closes #15201. [breaking-change]
2014-05-07debuginfo: Split debuginfo autotests into debuginfo-gdb and debuginfo-lldbMichael Woerister-0/+246