Changeset 15391


Ignore:
Timestamp:
May 26, 2012, 8:09:59 AM (13 years ago)
Author:
Gary Byers
Message:

Ensure that the defstruct for CCL.40055 is defined at (SAFETY 3).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/ansi-tests/ccl.lsp

    r15351 r15391  
    7171  1)
    7272
    73 (defstruct ccl.40055 (a 0 :type integer))
     73;;; It's not clear if it's ever been different, but typechecking done
     74;;; by defstruct constructors depends on optimization settings in effect
     75;;; when the constructor was compiled.
     76;;; Do we inline constuctors ???
     77
     78(locally
     79    (declare (optimize (safety 3)))
     80  (defstruct ccl.40055 (a 0 :type integer)))
    7481
    7582(deftest ccl.40055 ;; fixed in r9237 and r9240
Note: See TracChangeset for help on using the changeset viewer.