Commit 0bd0703d by Bob Wilson Committed by Bob Wilson

xtensa.c (xtensa_emit_loop_end): Only use "nop.n" instruction if the Xtensa…

xtensa.c (xtensa_emit_loop_end): Only use "nop.n" instruction if the Xtensa density option is enabled.

        * config/xtensa/xtensa.c (xtensa_emit_loop_end): Only use "nop.n"
        instruction if the Xtensa density option is enabled.

From-SVN: r66649
parent 886c07bc
2003-05-09 Bob Wilson <bob.wilson@acm.org>
* config/xtensa/xtensa.c (xtensa_emit_loop_end): Only use "nop.n"
instruction if the Xtensa density option is enabled.
2003-05-09 Matt Kraai <kraai@alumni.cmu.edu> 2003-05-09 Matt Kraai <kraai@alumni.cmu.edu>
* mklibgcc.in: Remove extra quotes. * mklibgcc.in: Remove extra quotes.
......
...@@ -1636,7 +1636,7 @@ xtensa_emit_loop_end (insn, operands) ...@@ -1636,7 +1636,7 @@ xtensa_emit_loop_end (insn, operands)
break; break;
case CODE_LABEL: case CODE_LABEL:
output_asm_insn ("nop.n", operands); output_asm_insn (TARGET_DENSITY ? "nop.n" : "nop", operands);
done = 1; done = 1;
break; break;
...@@ -1646,7 +1646,7 @@ xtensa_emit_loop_end (insn, operands) ...@@ -1646,7 +1646,7 @@ xtensa_emit_loop_end (insn, operands)
if (GET_CODE (body) == JUMP_INSN) if (GET_CODE (body) == JUMP_INSN)
{ {
output_asm_insn ("nop.n", operands); output_asm_insn (TARGET_DENSITY ? "nop.n" : "nop", operands);
done = 1; done = 1;
} }
else if ((GET_CODE (body) != USE) else if ((GET_CODE (body) != USE)
......
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