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