Function noCfiConst [src]
Prototype
pub fn noCfiConst(self: *Builder, function: Function.Index) Allocator.Error!Constant
Parameters
self: *Builder
function: Function.Index
Source
pub fn noCfiConst(self: *Builder, function: Function.Index) Allocator.Error!Constant {
try self.ensureUnusedConstantCapacity(1, NoExtra, 0);
return self.noCfiConstAssumeCapacity(function);
}