Paul Cochrane (via RT) wrote:
(DEPRECATED: The list as a whole may be surrounded by parentheses.)
Yes, this would remove the parens from the first string argument to set_args, set_returns, get_params, and get_results. So the pdd would become:
<set_opcode> "flags0, flags1, ..., flagsN", VAL0, VAL1, ... VALN <get_opcode> "flags0, flags1, ..., flagsN", REG0, REG1, ... REGN <get_opcode> "..., 0x200, flags0, ...", ..., "name", REG0, ... An example from t/compilers/imcc/syn/tail.t is: set_args "(0,0,0)", f, $P1, $P2 Which would change to: set_args "0,0,0", f, $P1, $P2 Allison