zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit b20cee586c6bd1cbc0c5364e8ebe5ae7ecf0ca1f (tree)
parent 37a4d9391f9585759d4c0d274393a3ddb3e2e76b
Author: antlilja <liljaanton2001@gmail.com>
Date:   Sun, 17 Mar 2024 16:25:59 +0100

LLVM: Fix incorrect fast constant in FastMath packed struct

Diffstat:
Msrc/codegen/llvm/Builder.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/codegen/llvm/Builder.zig b/src/codegen/llvm/Builder.zig @@ -6839,7 +6839,7 @@ pub const FastMath = packed struct(u8) { .arcp = true, .contract = true, .afn = true, - .realloc = true, + .reassoc = true, }; };