rename blknew() to newblk()

This is consistent with newtmp()
and newcon().
This commit is contained in:
Quentin Carbonneaux 2023-03-22 11:43:42 +01:00
parent eb9fcece9e
commit 5fee3da6ac
6 changed files with 7 additions and 7 deletions

View file

@ -507,7 +507,7 @@ split(Fn *fn, Blk *b)
Blk *bn;
++fn->nblk;
bn = blknew();
bn = newblk();
bn->nins = &insb[NIns] - curi;
idup(&bn->ins, curi, bn->nins);
curi = &insb[NIns];