From ef0788534700412ae77cd7ce4377f57599b11f01 Mon Sep 17 00:00:00 2001 From: dos-reis Date: Mon, 30 Apr 2012 07:07:53 +0000 Subject: * interp/compiler.boot: Use float? in lieu of FLOATP. * interp/fortcall.boot: Likewise. * interp/i-object.boot: Likewise. * interp/newfort.boot: Likewise. * interp/i-analy.boot: Compare to 0 in lieu of ZEROP. * interp/i-special.boot: Likewise. * interp/i-syscmd.boot: Likewise. * interp/sfsfun.boot: Likewise. * interp/sys-driver.boot: Likewise. * interp/macros.lisp: Directly use 1+ instead of QADD1. * interp/preparse.lisp: Likewise. * interp/slam.boot: Likewise. * interp/sys-macros.lisp: Likewise. * interp/sys-constants.boot ($BasicPredicates): Remove as unused. * interp/vmlisp.lisp (ADD1): Remove. (QSADD1): Likewise. (QSSUB1): Likewise. (QSTIMES): Likewise. --- src/interp/i-object.boot | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/interp/i-object.boot') diff --git a/src/interp/i-object.boot b/src/interp/i-object.boot index 2e739d1c..37c3b96a 100644 --- a/src/interp/i-object.boot +++ b/src/interp/i-object.boot @@ -1,6 +1,6 @@ -- Copyright (c) 1991-2002, The Numerical Algorithms Group Ltd. -- All rights reserved. --- Copyright (C) 2007-2011, Gabriel Dos Reis. +-- Copyright (C) 2007-2012, Gabriel Dos Reis. -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without @@ -177,7 +177,7 @@ getBasicMode0(x,useIntegerSubdomain) == x = 0 => $NonNegativeInteger $Integer $Integer - FLOATP x => $DoubleFloat + float? x => $DoubleFloat (x='%noBranch) or (x='noValue) => $NoValueMode nil @@ -192,7 +192,7 @@ getBasicObject x == $Integer objNewWrap(x,t) string? x => objNewWrap(x,$String) - FLOATP x => objNewWrap(x,$DoubleFloat) + float? x => objNewWrap(x,$DoubleFloat) nil -- cgit v1.2.3