From cf9be6f0efb90146bcdeb825b2b41ca02ca8c0a2 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Tue, 21 Feb 1995 15:09:36 +0000 Subject: [PATCH] (OVERRIDE_OPTIONS): Add missing ';' to SUBTARGET_OVERRIDE_OPTIONS. From-SVN: r8988 --- gcc/config/m68k/m68k.h | 4 ++-- 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 76365855f93..1f2ad54e02d 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 b7df8a85e60..e76da8ac620 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. */ -- 2.30.2