about summary refs log tree commit diff
path: root/tests/ui/cast_alignment.rs
AgeCommit message (Collapse)AuthorLines
2019-07-09Improve cast_ptr_alignment lintFlorian Gilcher-0/+2
* print alignment in bytes in the lint message * ignore ZST left-hand types
2019-03-10Various cosmetic improvements.Alexander Regueiro-1/+1
2019-01-08Remove all copyright license headersPhilipp Hansch-9/+0
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
2018-12-27tests: fix formatting and update test outputMatthias Krüger-1/+0
fix script one last time™
2018-12-12rustup https://github.com/rust-lang/rust/pull/56092Matthias Krüger-1/+1
fix ui test cast_alignment failure by adding #![feature(rustc_private)]
2018-12-09rustfmt testsMatthias Krüger-3/+0
2018-10-11Stabilize tool lintsOliver Scherer-1/+1
2018-10-06Add license header to Rust filesManish Goregaokar-0/+10
2018-08-29Adapt ui-tests to the tool_lintsflip1995-2/+4
2018-04-24Make cast_ptr_alignment ignore c_voidDevon Hollowood-0/+7
2018-04-11Fix misaligned_transmute lintDevon Hollowood-0/+19
This is done by adding two new lints: cast_ptr_alignment and transmute_ptr_to_ptr. These will replace misaligned_transmute.