[gforth] / gforth / engine / 128bit.h  

gforth: gforth/engine/128bit.h

File: [gforth] / gforth / engine / 128bit.h (download) (as text)
Revision: 1.3, Sat Aug 9 13:24:25 2008 UTC (4 years, 9 months ago) by anton
Branch: MAIN
CVS Tags: v0-7-0, HEAD
Changes since 1.2: +1 -1 lines
The Makefile now uses an EMACS variable
Eliminated most compilation warnings

/* supply [u]int128_t as DOUBLE_CELL_TYPEs under some conditions

  Copyright (C) 2005,2007,2008 Free Software Foundation, Inc.

  This file is part of Gforth.

  Gforth 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 3
  of the License, or (at your option) any later version.

  This program 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 this program; if not, see http://www.gnu.org/licenses/.
*/

#if !defined(DOUBLE_CELL_TYPE) || !defined(DOUBLE_UCELL_TYPE)
#if (SIZEOF_CHAR_P==8)
#ifdef FORCE_LL
/* #warning hand-defined int128_t */
typedef int int128_t __attribute__((__mode__(TI)));
typedef unsigned int uint128_t __attribute__((__mode__(TI)));
#define DOUBLE_CELL_TYPE int128_t
#define DOUBLE_UCELL_TYPE uint128_t
#else /* !defined(FORCE_LL) */
#define BUGGY_LONG_LONG
#endif /* !defined(FORCE_LL) */
#else /* (SIZEOF_CHAR_P!=8) */
#define BUGGY_LONG_LONG
#endif /* (SIZEOF_CHAR_P==8) */
#endif

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help