Just a minor cleanup noticed while browsing around.
There's still one call that seems like it ought to be replaceable: in
semantics.c:finish_asm_stmt, we have:
oconstraints = (const char **) alloca (noutputs * sizeof (char *));
But changing this to:
oconstraints = (const char **) XALLOCAVEC (char *, noutputs);
gives the error:
semantics.c: In function âfinish_asm_stmtâ:
semantics.c:1223:7: error: new âconstâ qualifier in middle of multi-level non-const cast is unsafe [-Werror=cast-qual]
which I don't understand, because the cast is not in the "middle" of
anything. Is this a bug in the cast checking?