]> gcc.gnu.org Git - gcc.git/commitdiff
xtensa.c (xtensa_emit_loop_end): Only use "nop.n" instruction if the Xtensa density...
authorBob Wilson <bob.wilson@acm.org>
Fri, 9 May 2003 23:36:39 +0000 (23:36 +0000)
committerBob Wilson <bwilson@gcc.gnu.org>
Fri, 9 May 2003 23:36:39 +0000 (23:36 +0000)
        * config/xtensa/xtensa.c (xtensa_emit_loop_end): Only use "nop.n"
        instruction if the Xtensa density option is enabled.

From-SVN: r66649

gcc/ChangeLog
gcc/config/xtensa/xtensa.c

index 3e1196c3033ea64c64b79244b494989f45fa30d6..20b38112db8e808468d95951ed6858ae9ec3ec6f 100644 (file)
@@ -1,3 +1,8 @@
+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>
 
        * mklibgcc.in: Remove extra quotes.
index 271409922e3a7e76205f4304c7817a16db7bf9d2..f053fd0d8714c65470e6a9fe8f19365e3f4a1b94 100644 (file)
@@ -1636,7 +1636,7 @@ xtensa_emit_loop_end (insn, operands)
          break;
 
        case CODE_LABEL:
-         output_asm_insn ("nop.n", operands);
+         output_asm_insn (TARGET_DENSITY ? "nop.n" : "nop", operands);
          done = 1;
          break;
 
@@ -1646,7 +1646,7 @@ xtensa_emit_loop_end (insn, operands)
 
            if (GET_CODE (body) == JUMP_INSN)
              {
-               output_asm_insn ("nop.n", operands);
+               output_asm_insn (TARGET_DENSITY ? "nop.n" : "nop", operands);
                done = 1;
              }
            else if ((GET_CODE (body) != USE)
This page took 0.075341 seconds and 5 git commands to generate.