Commit bffc6177 by Richard Stallman

(expand_asm_operands): For clobbering memory,

generate (MEM (SCRATCH)) inside the CLOBBER.

From-SVN: r3229
parent a5564331
......@@ -1272,7 +1272,10 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
if (j == -4) /* `memory', don't cache memory across asm */
{
XVECEXP (body, 0, i++) = gen_rtx (CLOBBER, VOIDmode, const0_rtx);
XVECEXP (body, 0, i++)
= gen_rtx (CLOBBER, VOIDmode,
gen_rtx (MEM, QImode,
gen_rtx (SCRATCH, VOIDmode, 0)));
continue;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment