Commit 4f053457 by Georg-Johann Lay

avr.c (out_movqi_mr_r): Fix length computation.

	* config/avr/avr.c (out_movqi_mr_r): Fix length computation.

From-SVN: r183697
parent 733ccf09
...@@ -3841,7 +3841,7 @@ out_movqi_mr_r (rtx insn, rtx op[], int *plen) ...@@ -3841,7 +3841,7 @@ out_movqi_mr_r (rtx insn, rtx op[], int *plen)
return avr_asm_len ("std %0,%1", op, plen, -1); return avr_asm_len ("std %0,%1", op, plen, -1);
} }
return avr_asm_len ("st %0,%1", op, plen, -2); return avr_asm_len ("st %0,%1", op, plen, -1);
} }
static const char* static const char*
......
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