about summary refs log tree commit diff
path: root/tests/codegen/issues/issue-119422.rs
AgeCommit message (Collapse)AuthorLines
2024-04-22Stabilize generic `NonZero`.Markus Reiter-1/+0
2024-02-25Use generic `NonZero` in tests.Markus Reiter-11/+11
2024-02-22[AUTO_GENERATED] Migrate compiletest to use `ui_test`-style `//@` directives许杰友 Jieyou Xu (Joe)-2/+2
2024-01-06Add assume into `NonZeroIntX::get`AngelicosPhosphoros-0/+83
LLVM currently don't support range metadata for function arguments so it fails to optimize non zero integers using their invariant if they are provided using by-value function arguments. Related to https://github.com/rust-lang/rust/issues/119422 Related to https://github.com/llvm/llvm-project/issues/76628 Related to https://github.com/rust-lang/rust/issues/49572