diff options
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/fr30/fr30.h | 18 | ||||
-rw-r--r-- | gcc/config/fr30/fr30.opt | 27 |
3 files changed, 33 insertions, 18 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 571faae..acdafa6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-03-21 Richard Sandiford <rsandifo@redhat.com> + + * config/fr30/fr30.h (TARGET_SMALL_MODEL_MASK, TARGET_SMALL_MODEL) + (TARGET_DEFAULT, target_flags, TARGET_SWITCHES): Delete. + * config/fr30/fr30.opt: New file. + 2005-03-18 Daniel Berlin <dberlin@dberlin.org> Fix PR tree-optimization/20542 diff --git a/gcc/config/fr30/fr30.h b/gcc/config/fr30/fr30.h index 7847a76..8f3d4de 100644 --- a/gcc/config/fr30/fr30.h +++ b/gcc/config/fr30/fr30.h @@ -49,24 +49,6 @@ Boston, MA 02111-1307, USA. */ } \ while (0) -/* Use LDI:20 instead of LDI:32 to load addresses. */ -#define TARGET_SMALL_MODEL_MASK (1 << 0) -#define TARGET_SMALL_MODEL (target_flags & TARGET_SMALL_MODEL_MASK) - -#define TARGET_DEFAULT 0 - -/* This declaration should be present. */ -extern int target_flags; - -#define TARGET_SWITCHES \ -{ \ - { "small-model", TARGET_SMALL_MODEL_MASK, \ - N_("Assume small address space") }, \ - { "no-small-model", - TARGET_SMALL_MODEL_MASK, "" }, \ - { "no-lsim", 0, "" }, \ - { "", TARGET_DEFAULT, "" } \ -} - #define TARGET_VERSION fprintf (stderr, " (fr30)"); #define CAN_DEBUG_WITHOUT_FP diff --git a/gcc/config/fr30/fr30.opt b/gcc/config/fr30/fr30.opt new file mode 100644 index 0000000..bf6f869 --- /dev/null +++ b/gcc/config/fr30/fr30.opt @@ -0,0 +1,27 @@ +; Options for the FR30 port of the compiler. + +; Copyright (C) 2005 Free Software Foundation, Inc. +; +; This file is part of GCC. +; +; GCC is free software; you can redistribute it and/or modify it under +; the terms of the GNU General Public License as published by the Free +; Software Foundation; either version 2, or (at your option) any later +; version. +; +; GCC is distributed in the hope that it will be useful, but WITHOUT ANY +; WARRANTY; without even the implied warranty of MERCHANTABILITY or +; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +; for more details. +; +; You should have received a copy of the GNU General Public License +; along with GCC; see the file COPYING. If not, write to the Free +; Software Foundation, 59 Temple Place - Suite 330, Boston, MA +; 02111-1307, USA. + +msmall-model +Target Report Mask(SMALL_MODEL) +Assume small address space + +mno-lsim +Target RejectNegative Undocumented |