* rs6000.h (LEGITIMIZE_ADDRESS): Add missing goto on last case.
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 10 Nov 1998 14:06:42 +0000 (14:06 +0000)
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 10 Nov 1998 14:06:42 +0000 (14:06 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23598 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/rs6000/rs6000.h

index 23ba910..a5ea252 100644 (file)
@@ -1,3 +1,7 @@
+Tue Nov 10 17:04:11 1998  David Edelsohn  <edelsohn@mhpcc.edu>
+
+       * rs6000.h (LEGITIMIZE_ADDRESS): Add missing goto on last case.
+
 1998-11-09  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
 
        * dbxout.c: Check HAVE_STAB_H instead of HAVE_STABS_H.
index 1e9a222..66e9c9e 100644 (file)
@@ -1997,6 +1997,7 @@ typedef struct rs6000_args
       rtx reg = gen_reg_rtx (Pmode);                                   \
       emit_insn (gen_elf_high (reg, (X)));                             \
       (X) = gen_rtx_LO_SUM (Pmode, reg, (X));                          \
+      goto WIN;                                                                \
     }                                                                  \
 }