Function ppc_fp128Const [src]
Prototype
pub fn ppc_fp128Const(self: *Builder, val: [2]f64) Allocator.Error!Constant
Parameters
self: *Builder
val: [2]f64
Source
pub fn ppc_fp128Const(self: *Builder, val: [2]f64) Allocator.Error!Constant {
try self.ensureUnusedConstantCapacity(1, Constant.Fp128, 0);
return self.ppc_fp128ConstAssumeCapacity(val);
}