diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-03-05 23:38:05 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-03-05 23:38:05 +0000 |
commit | 415e01b3ee117b491777d8fccbb7a38222680c3d (patch) | |
tree | d02e352c0047c4791ec633b6230209bc4153cb21 /gcc/config/m68k/sgs.h | |
parent | d729cacc2c7dc50f19547d112e54646ae6eadde2 (diff) | |
download | gcc-415e01b3ee117b491777d8fccbb7a38222680c3d.tar.gz |
(ASM_OUTPUT_CASE_END): Add missing semicolon.
(switch_table_difference_label_flag): Make extern.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11476 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/m68k/sgs.h')
-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 f4476a0942c..447ca6ec5cc 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. */ |