if(n->left == N) {
// give it a name so escape analysis has nodes to work with
- snprint(namebuf, sizeof(namebuf), ".anon%d", gen++);
+ snprint(namebuf, sizeof(namebuf), "~anon%d", gen++);
n->left = newname(lookup(namebuf));
n->left->orig = N; // signal that the original was absent
*nn = *n->left;
n->left = nn;
- snprint(namebuf, sizeof(namebuf), ".anon%d", gen++);
+ snprint(namebuf, sizeof(namebuf), "~anon%d", gen++);
n->left->sym = lookup(namebuf);
}
{
Node *n;
- snprint(namebuf, sizeof(namebuf), ".r%d", i);
+ snprint(namebuf, sizeof(namebuf), "~r%d", i);
n = newname(lookup(namebuf));
n->type = t->type;
n->class = PAUTO;