aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/extendf_test.zig
AgeCommit message (Collapse)Author
2023-07-24Use builtin inference over @as where possibleZachary Raineri
2023-06-24all: migrate code to new cast builtin syntaxmlugg
Most of this migration was performed automatically with `zig fmt`. There were a few exceptions which I had to manually fix: * `@alignCast` and `@addrSpaceCast` cannot be automatically rewritten * `@truncate`'s fixup is incorrect for vectors * Test cases are not formatted, and their error locations change
2023-04-05compiler_rt: change the abi of f16 on mac to depend on the other typeJacob Young
2022-11-04all: rename i386 to x86Ali Chraghi
2022-10-09compiler_rt: Fix `extendf_f80` bugCody Tapscott
Zig should probably perform this cast automatically (w/ safety). Integer shifts are a real pain otherwise. Adds some test coverage, too.
2022-06-17compiler-rt: fix testsAndrew Kelley