about summary refs log tree commit diff
path: root/tests/codegen/pow_of_two.rs
AgeCommit message (Collapse)AuthorLines
2024-02-01Revert unsound libcore changes of #119911Oli Scherer-55/+0
2024-01-26Update codegen test for LLVM 18Nikita Popov-2/+2
2024-01-23Further Implement Power of Two OptimizationNicholas Thompson-39/+26
2024-01-19Add new intrinsic `is_constant` and optimize `pow`Catherine Flores-0/+68
Fix overflow check Make MIRI choose the path randomly and rename the intrinsic Add back test Add miri test and make it operate on `ptr` Define `llvm.is.constant` for primitives Update MIRI comment and fix test in stage2 Add const eval test Clarify that both branches must have the same side effects guaranteed non guarantee use immediate type instead Co-Authored-By: Ralf Jung <post@ralfj.de>