about summary refs log tree commit diff
path: root/tests/codegen/float
AgeCommit message (Collapse)AuthorLines
2024-10-20x86-32 float return for 'Rust' ABI: treat all float types consistentlyRalf Jung-24/+31
2024-10-12Update tests for 32bit targetsbjorn3-34/+98
2024-07-12Adjust tests for x86 "Rust" ABI changesbeetrees-4/+18
2024-05-16Fix assertion when attempting to convert `f16` and `f128` with `as`Trevor Gross-3/+393
These types are currently rejected for `as` casts by the compiler. Remove this incorrect check and add codegen tests for all conversions involving these types.
2024-04-10Add basic library support for `f16` and `f128`Trevor Gross-0/+258
Implement basic operation traits that get lowered to intrinsics. This includes codegen tests for implemented operations.