Commit 7c3414b6 by Kaveh R. Ghazi Committed by Kaveh Ghazi

* m68hc11.md (addhi_sp): Fix uninitialized variable bug.

From-SVN: r57202
parent 245ff137
2002-09-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2002-09-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* m68hc11.md (addhi_sp): Fix uninitialized variable bug.
* c4x-c.c, c4x.c, darwin.c, i370-c.c, m32r.c: Include tm_p.h * c4x-c.c, c4x.c, darwin.c, i370-c.c, m32r.c: Include tm_p.h
instead of the *-protos.h file directly. instead of the *-protos.h file directly.
* t-c4x, t-i370, t-v850: Depend on $(TM_P_H). * t-c4x, t-i370, t-v850: Depend on $(TM_P_H).
......
...@@ -2258,7 +2258,7 @@ ...@@ -2258,7 +2258,7 @@
Register X/Y is lost, this is specified by the (clobber) statement. */ Register X/Y is lost, this is specified by the (clobber) statement. */
output_asm_insn (\"ts%3\", operands); output_asm_insn (\"ts%3\", operands);
if (GET_CODE (operands[2]) == CONST_INT if (GET_CODE (operands[2]) == CONST_INT
&& ((val = INTVAL (operands[2]) >= 0 && val < 0x100)) && ((val = INTVAL (operands[2])) >= 0 && val < 0x100)
&& dead_register_here (insn, gen_rtx (REG, HImode, HARD_D_REGNUM))) && dead_register_here (insn, gen_rtx (REG, HImode, HARD_D_REGNUM)))
{ {
output_asm_insn (\"ldab\\t%2\", operands); output_asm_insn (\"ldab\\t%2\", operands);
......
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