diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-06 22:13:57 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-06 22:13:57 +0000 |
commit | 6965e369795f571d4968f5a1064df4bbdae5cb1a (patch) | |
tree | bc810a47f06b18eb75de61d77ccfcc92ede919c3 /gcc/config/pdp11/pdp11.c | |
parent | 6bddc6239e02b8af22cbb4474d35aa161025e07f (diff) | |
download | gcc-6965e369795f571d4968f5a1064df4bbdae5cb1a.tar.gz |
* pdp11.c (simple_memory_operand): Add default case in switch.
* pdp11.h (TARGET_SWITCHES): Add help strings.
(NOTICE_UPDATE_CC): Don't include excess argument to format.
(ASM_OUTPUT_DOUBLE_INT): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26227 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/pdp11/pdp11.c')
-rw-r--r-- | gcc/config/pdp11/pdp11.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config/pdp11/pdp11.c b/gcc/config/pdp11/pdp11.c index 8ca31d68430..61da8c4e8c7 100644 --- a/gcc/config/pdp11/pdp11.c +++ b/gcc/config/pdp11/pdp11.c @@ -1,5 +1,5 @@ /* Subroutines for gcc2 for pdp11. - Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1994, 1995, 1996, 1997, 1999 Free Software Foundation, Inc. Contributed by Michael K. Gschwind (mike@vlsivie.tuwien.ac.at). This file is part of GNU CC. @@ -1089,6 +1089,9 @@ int simple_memory_operand(op, mode) case PLUS: /* X(R0) - extra cost */ return 0; + + default: + break; } return FALSE; |