mirror of
https://github.com/ziglang/zig.git
synced 2026-02-12 20:37:54 +00:00
LLVM: Use fast math when requested
This commit is contained in:
parent
b20cee586c
commit
79b868d504
@ -14727,7 +14727,7 @@ pub fn toBitcode(self: *Builder, allocator: Allocator) bitcode_writer.Error![]co
|
||||
.@"notail call fast" => .{ .no_tail = true, .call_conv = call_conv },
|
||||
else => unreachable,
|
||||
},
|
||||
.fast_math = .{},
|
||||
.fast_math = FastMath.fast,
|
||||
.type_id = extra.data.ty,
|
||||
.callee = extra.data.callee,
|
||||
.args = args,
|
||||
@ -14786,7 +14786,7 @@ pub fn toBitcode(self: *Builder, allocator: Allocator) bitcode_writer.Error![]co
|
||||
.opcode = kind.toBinaryOpcode(),
|
||||
.lhs = adapter.getOffsetValueIndex(extra.lhs),
|
||||
.rhs = adapter.getOffsetValueIndex(extra.rhs),
|
||||
.fast_math = .{},
|
||||
.fast_math = FastMath.fast,
|
||||
});
|
||||
},
|
||||
.alloca,
|
||||
@ -14884,7 +14884,7 @@ pub fn toBitcode(self: *Builder, allocator: Allocator) bitcode_writer.Error![]co
|
||||
.lhs = adapter.getOffsetValueIndex(extra.lhs),
|
||||
.rhs = adapter.getOffsetValueIndex(extra.rhs),
|
||||
.pred = kind.toCmpPredicate(),
|
||||
.fast_math = .{},
|
||||
.fast_math = FastMath.fast,
|
||||
});
|
||||
},
|
||||
.fneg => try function_block.writeAbbrev(FunctionBlock.FNeg{
|
||||
@ -14892,7 +14892,7 @@ pub fn toBitcode(self: *Builder, allocator: Allocator) bitcode_writer.Error![]co
|
||||
}),
|
||||
.@"fneg fast" => try function_block.writeAbbrev(FunctionBlock.FNegFast{
|
||||
.val = adapter.getOffsetValueIndex(@enumFromInt(datas[instr_index])),
|
||||
.fast_math = .{},
|
||||
.fast_math = FastMath.fast,
|
||||
}),
|
||||
.extractvalue => {
|
||||
var extra = func.extraDataTrail(Function.Instruction.ExtractValue, datas[instr_index]);
|
||||
@ -14940,7 +14940,7 @@ pub fn toBitcode(self: *Builder, allocator: Allocator) bitcode_writer.Error![]co
|
||||
.lhs = adapter.getOffsetValueIndex(extra.lhs),
|
||||
.rhs = adapter.getOffsetValueIndex(extra.rhs),
|
||||
.cond = adapter.getOffsetValueIndex(extra.cond),
|
||||
.fast_math = .{},
|
||||
.fast_math = FastMath.fast,
|
||||
});
|
||||
},
|
||||
.shufflevector => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user