11.3Sskrll/* $NetBSD: targparam.h,v 1.3 2021/11/02 10:38:26 skrll Exp $ */ 21.1Schristos 31.1Schristos/* 41.1Schristos * Copyright (c) 1994, 1995 Jochen Pohl 51.1Schristos * All Rights Reserved. 61.1Schristos * 71.1Schristos * Redistribution and use in source and binary forms, with or without 81.1Schristos * modification, are permitted provided that the following conditions 91.1Schristos * are met: 101.1Schristos * 1. Redistributions of source code must retain the above copyright 111.1Schristos * notice, this list of conditions and the following disclaimer. 121.1Schristos * 2. Redistributions in binary form must reproduce the above copyright 131.1Schristos * notice, this list of conditions and the following disclaimer in the 141.1Schristos * documentation and/or other materials provided with the distribution. 151.1Schristos * 3. All advertising materials mentioning features or use of this software 161.1Schristos * must display the following acknowledgement: 171.1Schristos * This product includes software developed by Jochen Pohl for 181.1Schristos * The NetBSD Project. 191.1Schristos * 4. The name of the author may not be used to endorse or promote products 201.1Schristos * derived from this software without specific prior written permission. 211.1Schristos * 221.1Schristos * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 231.1Schristos * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 241.1Schristos * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 251.1Schristos * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 261.1Schristos * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 271.1Schristos * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 281.1Schristos * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 291.1Schristos * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 301.1Schristos * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 311.1Schristos * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 321.1Schristos */ 331.1Schristos 341.1Schristos/* 351.1Schristos * Machine-dependent target parameters for lint1. 361.1Schristos */ 371.1Schristos#include "schar.h" 381.3Sskrll/* This is for __mips_n64 */ 391.1Schristos#include "lp64.h" 401.1Schristos 411.1Schristos/* 421.2Srillig * Should be set to LONG if the difference of two pointers is of type long 431.1Schristos * or the value of sizeof is of type unsigned long. Note this MUST be 441.1Schristos * kept in sync with the compiler! 451.1Schristos */ 461.1Schristos#define PTRDIFF_TSPEC LONG 471.1Schristos#define SIZEOF_TSPEC ULONG 481.1Schristos#define INTPTR_TSPEC LONG 491.1Schristos 501.1Schristos#define FLOAT_SIZE 32 511.1Schristos#define DOUBLE_SIZE 64 521.1Schristos#define LDOUBLE_SIZE 128 531.1Schristos 541.1Schristos#define ENUM_SIZE 32 55