Commit 6a6fc514 by Nick Burrett Committed by Jeff Law

arm.md (nop): Output instruction using output_asm_insn to fix assembler dialect problems.

        * arm.md (nop): Output instruction using output_asm_insn to fix
        assembler dialect problems.

From-SVN: r26667
parent 5d55e5cd
Tue Apr 27 00:36:44 1999 Nick Burrett <nick.burrett@btinternet.com>
* arm.md (nop): Output instruction using output_asm_insn to fix
assembler dialect problems.
Mon Apr 26 23:55:50 1999 Robert Lipe <robertlipe@usa.net> Mon Apr 26 23:55:50 1999 Robert Lipe <robertlipe@usa.net>
* Makefile.in (fixinc.sh): Fix dependencies. * Makefile.in (fixinc.sh): Fix dependencies.
......
...@@ -4420,7 +4420,15 @@ ...@@ -4420,7 +4420,15 @@
(define_insn "nop" (define_insn "nop"
[(const_int 0)] [(const_int 0)]
"" ""
"mov%?\\tr0, r0\\t%@ nop") "*
{
rtx operands[1];
operands[0] = gen_rtx (REG, SImode, 0);
output_asm_insn (\"mov%?\\t%0, %0\\t%@ nop\", operands);
return \"\";
}
")
;; Patterns to allow combination of arithmetic, cond code and shifts ;; Patterns to allow combination of arithmetic, cond code and shifts
......
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