diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-03-05 18:38:05 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-03-05 18:38:05 -0500 |
commit | 4991a34375192997ef8f13fc4e050d75ed2e7fb9 (patch) | |
tree | d02e352c0047c4791ec633b6230209bc4153cb21 /gcc | |
parent | 973fa6914f6e849f9ec30d9d1fa4dab6283beb34 (diff) | |
download | gcc-4991a34375192997ef8f13fc4e050d75ed2e7fb9.zip gcc-4991a34375192997ef8f13fc4e050d75ed2e7fb9.tar.gz gcc-4991a34375192997ef8f13fc4e050d75ed2e7fb9.tar.bz2 |
(ASM_OUTPUT_CASE_END): Add missing semicolon.
(switch_table_difference_label_flag): Make extern.
From-SVN: r11476
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m68k/sgs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/m68k/sgs.h b/gcc/config/m68k/sgs.h index f4476a094..447ca6e 100644 --- a/gcc/config/m68k/sgs.h +++ b/gcc/config/m68k/sgs.h @@ -1,6 +1,6 @@ /* Definitions of target machine for GNU compiler for m68k targets using assemblers derived from AT&T "SGS" releases. - Copyright (C) 1991, 1993 Free Software Foundation, Inc. + Copyright (C) 1991, 1993, 1996 Free Software Foundation, Inc. Written by Fred Fish (fnf@cygnus.com) This file is part of GNU CC. @@ -419,10 +419,10 @@ do { \ #define ASM_OUTPUT_CASE_END(FILE,NUM,TABLE) \ { if (switch_table_difference_label_flag) \ asm_fprintf (FILE, "\t%s %LLD%d,%LL%d-%LLI%d-2.b\n",\ - SET_ASM_OP, (NUM), (NUM), (NUM)) \ + SET_ASM_OP, (NUM), (NUM), (NUM)); \ switch_table_difference_label_flag = 0; } -int switch_table_difference_label_flag; +extern int switch_table_difference_label_flag; /* This is how to output an element of a case-vector that is relative. */ |