about summary refs log tree commit diff
path: root/tests/codegen/vec_pop_push_noop.rs
AgeCommit message (Collapse)AuthorLines
2025-07-22Rename `tests/codegen` into `tests/codegen-llvm`Guillaume Gomez-24/+0
2025-04-05Update the minimum external LLVM to 19Josh Stone-3/+0
2025-02-11tests/codegen: use -Copt-level=3 instead of -OJubilee Young-1/+1
2025-01-09Update a bunch of library types for MCP807Scott McMurray-3/+0
This greatly reduces the number of places that actually use the `rustc_layout_scalar_valid_range_*` attributes down to just 3: ``` library/core\src\ptr\non_null.rs 68:#[rustc_layout_scalar_valid_range_start(1)] library/core\src\num\niche_types.rs 19: #[rustc_layout_scalar_valid_range_start($low)] 20: #[rustc_layout_scalar_valid_range_end($high)] ``` Everything else -- PAL Nanoseconds, alloc's `Cap`, niched FDs, etc -- all just wrap those `niche_types` types.
2024-12-15Fix `vec_pop_push_noop` codegen test on `wasm32-wasip1` targetEFanZh-1/+1
2024-12-15Asserts the maximum value that can be returned from `Vec::len`EFanZh-0/+6
2024-03-29Fix test.Cai Bear-3/+3
2024-02-23Ignore less tests in debug buildsBen Kimock-2/+0
2024-02-22[AUTO_GENERATED] Migrate compiletest to use `ui_test`-style `//@` directives许杰友 Jieyou Xu (Joe)-2/+2
2024-01-22update codegen testsjoboet-0/+2
2023-10-16Add invariant to Vec::pop that len < cap if pop successfulArthur Carcano-0/+24
Fixes: https://github.com/rust-lang/rust/issues/114334