summaryrefslogtreecommitdiff
path: root/gcc/config/pdp11/pdp11.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-04-06 22:13:57 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-04-06 22:13:57 +0000
commit6965e369795f571d4968f5a1064df4bbdae5cb1a (patch)
treebc810a47f06b18eb75de61d77ccfcc92ede919c3 /gcc/config/pdp11/pdp11.c
parent6bddc6239e02b8af22cbb4474d35aa161025e07f (diff)
downloadgcc-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.c5
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;