Function asmConst [src]
Prototype
pub fn asmConst( self: *Builder, ty: Type, info: Constant.Assembly.Info, assembly: String, constraints: String, ) Allocator.Error!Constant
Parameters
self: *Builder
ty: Type
info: Constant.Assembly.Info
assembly: String
constraints: String
Source
pub fn asmConst(
self: *Builder,
ty: Type,
info: Constant.Assembly.Info,
assembly: String,
constraints: String,
) Allocator.Error!Constant {
try self.ensureUnusedConstantCapacity(1, Constant.Assembly, 0);
return self.asmConstAssumeCapacity(ty, info, assembly, constraints);
}