From 9f280fe9060330b090b5765927df80c46b38f392 Mon Sep 17 00:00:00 2001 From: rth Date: Sat, 12 Oct 2002 16:38:01 +0000 Subject: * pdp11.h (ASM_OUTPUT_SKIP): Add preceding 0 for octal constant. (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL): Likewise. * pdp11.c (pdp11_output_function_prologue): 0%o -> %#o. (pdp11_output_function_epilogue, output_ascii): Likewise. (output_addr_const_pdp11): Likewise. * pdp11.md (movdi): Use offsetable memory for floating store. (lshrsi3, negsi2): Delete irrelevant comment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58087 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/config/pdp11/pdp11.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/config/pdp11/pdp11.md') diff --git a/gcc/config/pdp11/pdp11.md b/gcc/config/pdp11/pdp11.md index 2b8747fd057..fae4907bf83 100644 --- a/gcc/config/pdp11/pdp11.md +++ b/gcc/config/pdp11/pdp11.md @@ -621,7 +621,7 @@ ;; Move instructions (define_insn "movdi" - [(set (match_operand:DI 0 "general_operand" "=g,rm,m") + [(set (match_operand:DI 0 "general_operand" "=g,rm,o") (match_operand:DI 1 "general_operand" "m,r,a"))] "" "* return output_move_quad (operands);" @@ -1395,7 +1395,7 @@ (lshiftrt:SI (match_operand:SI 1 "general_operand" "0") (const_int 1)))] "" -{ /* Here we trust that operands don't overlap */ +{ rtx lateoperands[2]; @@ -1614,7 +1614,7 @@ [(set (match_operand:SI 0 "register_operand" "=r") (neg:SI (match_operand:SI 1 "general_operand" "0")))] "" -{ /* Here we trust that operands don't overlap */ +{ rtx lateoperands[2]; -- cgit v1.2.1