frontend/define.c, ntharg(), #3/15 drop redundant `if', already guarded by `while'
This commit is contained in:
parent
8ac0329bd9
commit
71908ef194
|
|
@ -407,7 +407,6 @@ trcopy(struct pnode *tree, char *args, struct pnode *nn)
|
||||||
static struct pnode *
|
static struct pnode *
|
||||||
ntharg(int num, struct pnode *args)
|
ntharg(int num, struct pnode *args)
|
||||||
{
|
{
|
||||||
if (num > 1)
|
|
||||||
while (--num > 0) {
|
while (--num > 0) {
|
||||||
if (args && args->pn_op && (args->pn_op->op_num != PT_OP_COMMA)) {
|
if (args && args->pn_op && (args->pn_op->op_num != PT_OP_COMMA)) {
|
||||||
if (num == 1)
|
if (num == 1)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue