diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1991-12-01 05:07:43 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1991-12-01 05:07:43 +0000 |
commit | 0eec94f785f54a2759e17ae3a36463c89515835c (patch) | |
tree | 5ca2604f7fa584167a8c8f54d50f63884c12c83b /gcc/config/m88k/luna.h | |
parent | 1bd2986a8621f7f1e64ba04d06d265de9bda7472 (diff) | |
download | gcc-0eec94f785f54a2759e17ae3a36463c89515835c.tar.gz |
Initial revision
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/m88k/luna.h')
-rw-r--r-- | gcc/config/m88k/luna.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/gcc/config/m88k/luna.h b/gcc/config/m88k/luna.h new file mode 100644 index 00000000000..bd4d254e4b4 --- /dev/null +++ b/gcc/config/m88k/luna.h @@ -0,0 +1,46 @@ +/* Definitions of target machine for GNU compiler. + Motorola m88100 running Omron Luna/88k. + Copyright (C) 1991 Free Software Foundation, Inc. + Contributed by Jeffery Friedl (jfriedl@omron.co.jp) + Currently supported by Tom Wood (wood@dg-rtp.dg.com) + +This file is part of GNU CC. + +GNU CC 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. + +GNU CC 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 GNU CC; see the file COPYING. If not, write to +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +/* The Omron Luna/88k is MACH and uses BSD a.out, not COFF or ELF. */ +#ifndef MACH +#define MACH +#endif +#define DBX_DEBUGGING_INFO + +#include "m88k.h" + +/* Identify the compiler. */ +#undef VERSION_INFO1 +#define VERSION_INFO1 "Omron Luna/88k, " + +/* Macros to be automatically defined. */ +#undef CPP_PREDEFINES +#define CPP_PREDEFINES \ + "-DMACH -Dmc88100 -Dm88k -Dunix -Dluna -Dluna88k -D__CLASSIFY_TYPE__=2" + +/* Specify extra dir to search for include files. */ +#undef SYSTEM_INCLUDE_DIR +#define SYSTEM_INCLUDE_DIR "/usr/mach/include" + +/* For the Omron Luna/88k, a float function returns a double in traditional + mode (and a float in ansi mode). */ +#undef TRADITIONAL_RETURN_FLOAT |