the fallback error in binary_operator() was unreachable, since invalid
binary operators are rejected in three_arguments() via binop() which
returns false and prevents entry into binary_operator().
this dead code was unreachable and safe to remove
ref: line 636 where "binary operator expected" is generated.
Signed-off-by: Harry Fellowes <harryfellowes1@gmail.com>
Copyright-paperwork-exempt: Yes
break;
}
- /* FIXME: is this dead code? */
- test_syntax_error (_("%s: unknown binary operator"), quote (argv[op]));
+ /* Dead code removed: unrecognised binary operators are filtered before binary_operator() is called, see line 636*/
}
if (argv[op][0] == '='