PHPCompiler\Backend\PHP7\PECL::getLabel PHP Method

getLabel() protected method

protected getLabel ( Block $block )
$block PHPCfg\Block
    protected function getLabel(Block $block)
    {
        if (!$this->state->labels->contains($block)) {
            $this->state->labels[$block] = count($this->state->labels) + 1;
        }
        return 'l' . $this->state->labels[$block];
    }