00001 /* Configuration for GNU compiler 00002 for an DEC/Compaq Alpha 00003 Copyright (C) 1999, 2001 Free Software Foundation, Inc. 00004 Donn Terry, Softway Systems, Inc. 00005 derived from code by Douglas B. Rupp (drupp@cs.washington.edu) 00006 00007 This file is part of GNU CC. 00008 00009 GNU CC is free software; you can redistribute it and/or modify 00010 it under the terms of the GNU General Public License as published by 00011 the Free Software Foundation; either version 2, or (at your option) 00012 any later version. 00013 00014 GNU CC is distributed in the hope that it will be useful, 00015 but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 GNU General Public License for more details. 00018 00019 You should have received a copy of the GNU General Public License 00020 along with GNU CC; see the file COPYING. If not, write to 00021 the Free Software Foundation, 59 Temple Place - Suite 330, 00022 Boston, MA 02111-1307, USA. */ 00023 00024 #define HOST_BITS_PER_WIDE_INT 64 00025 #ifdef __GNUC__ 00026 # define HOST_WIDE_INT long long 00027 #else 00028 # define HOST_WIDE_INT __int64 00029 #endif 00030 00031 #define HOST_BITS_PER_WIDEST_INT HOST_BITS_PER_LONGLONG 00032 #ifdef __GNUC__ 00033 # define HOST_WIDEST_INT long long 00034 #else 00035 # define HOST_WIDEST_INT __int64 00036 #endif 00037 #define HOST_WIDEST_INT_PRINT_DEC "%lld" 00038 #define HOST_WIDEST_INT_PRINT_UNSIGNED "%llu" 00039 #define HOST_WIDEST_INT_PRINT_HEX "0x%llx"
1.5.6