Disable warning about 64-bit constants.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Mon, 15 Feb 1993 23:17:39 +0000 (23:17 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Mon, 15 Feb 1993 23:17:39 +0000 (23:17 +0000)
v7/src/compiler/machines/alpha/lapgen.scm

index 4234c2916d77261bbdc24f3ce573cbf163d0bf61..26f385b50cb4739ad2a85f920dfcc0f7caf0c2a4 100644 (file)
@@ -1,8 +1,8 @@
 #| -*-Scheme-*-
 
-$Id: lapgen.scm,v 1.2 1992/10/15 16:46:07 jinx Exp $
+$Id: lapgen.scm,v 1.3 1993/02/15 23:17:39 gjr Exp $
 
-Copyright (c) 1992 Digital Equipment Corporation (D.E.C.)
+Copyright (c) 1992-1993 Digital Equipment Corporation (D.E.C.)
 
 This software was developed at the Digital Equipment Corporation
 Cambridge Research Laboratory.  Permission to copy this software, to
@@ -608,7 +608,10 @@ case.
   (let ((label (immediate->label immediate)))
     (load-pc-relative target 'IMMEDIATE label))
   |#
-  (warn "%load-immediate: generating 64-bit constant" (number->string immediate 16))
+  #|
+  (warn "%load-immediate: generating 64-bit constant"
+       (number->string immediate 16))
+  |#
   (with-values (lambda () (split-64-bits immediate))
     (lambda (high low)
       (let ((left-half (load-immediate target high false)))