Function blockAddrConst [src]

Prototype

pub fn blockAddrConst( self: *Builder, function: Function.Index, block: Function.Block.Index, ) Allocator.Error!Constant

Parameters

self: *Builderfunction: Function.Indexblock: Function.Block.Index

Source

pub fn blockAddrConst( self: *Builder, function: Function.Index, block: Function.Block.Index, ) Allocator.Error!Constant { try self.ensureUnusedConstantCapacity(1, Constant.BlockAddress, 0); return self.blockAddrConstAssumeCapacity(function, block); }