diff options
author | Doug Evans <dje@gnu.org> | 1995-02-21 15:09:36 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1995-02-21 15:09:36 +0000 |
commit | cf9be6f0efb90146bcdeb825b2b41ca02ca8c0a2 (patch) | |
tree | 206e5945a27087d59468196c3b98cd802f71f40c | |
parent | a07190d44a054ef365d517f809f795e6a90ce747 (diff) | |
download | gcc-cf9be6f0efb90146bcdeb825b2b41ca02ca8c0a2.zip gcc-cf9be6f0efb90146bcdeb825b2b41ca02ca8c0a2.tar.gz gcc-cf9be6f0efb90146bcdeb825b2b41ca02ca8c0a2.tar.bz2 |
(OVERRIDE_OPTIONS): Add missing ';' to SUBTARGET_OVERRIDE_OPTIONS.
From-SVN: r8988
-rw-r--r-- | gcc/config/m68k/m68k.h | 4 | ||||
-rw-r--r-- | gcc/config/sparc/sparc.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/m68k/m68k.h b/gcc/config/m68k/m68k.h index 7636585..1f2ad54 100644 --- a/gcc/config/m68k/m68k.h +++ b/gcc/config/m68k/m68k.h @@ -142,14 +142,14 @@ extern int target_flags; if (TARGET_FPA) target_flags &= ~2; \ if (! TARGET_68020 && flag_pic == 2) \ error("-fPIC is not currently supported on the 68000 or 68010\n"); \ - SUBTARGET_OVERRIDE_OPTIONS \ + SUBTARGET_OVERRIDE_OPTIONS; \ } #else #define OVERRIDE_OPTIONS \ { \ if (! TARGET_68020 && flag_pic == 2) \ error("-fPIC is not currently supported on the 68000 or 68010\n"); \ - SUBTARGET_OVERRIDE_OPTIONS \ + SUBTARGET_OVERRIDE_OPTIONS; \ } #endif /* defined SUPPORT_SUN_FPA */ diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index b7df8a8..e76da8a 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -130,11 +130,11 @@ void sparc_override_options (); } \ flag_omit_frame_pointer = 0; \ } \ - SUBTARGET_OVERRIDE_OPTIONS \ + SUBTARGET_OVERRIDE_OPTIONS; \ sparc_override_options (); \ } while (0) -/* This is meant to be redefined in the host dependent files */ +/* This is meant to be redefined in the host dependent files. */ #define SUBTARGET_OVERRIDE_OPTIONS /* These compiler options take an argument. We ignore -target for now. */ |