frontend/parse.c, PP_mknnode(), reorder

This commit is contained in:
rlar 2015-12-22 20:10:59 +01:00
parent 30becb4509
commit d632e3314d
1 changed files with 3 additions and 3 deletions

View File

@ -330,12 +330,9 @@ PP_mknnode(double number)
struct pnode *p;
struct dvec *v;
p = alloc_pnode();
v = alloc(struct dvec);
ZERO(v, struct dvec);
p->pn_value = v;
/* We don't use printnum because it screws up PP_mkfnode above. We have
* to be careful to deal properly with node numbers that are quite
* large...
@ -351,6 +348,9 @@ PP_mknnode(double number)
v->v_length = 1;
v->v_plot = NULL;
vec_new(v);
p = alloc_pnode();
p->pn_value = v;
return (p);
}