X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fpolicy.lisp;h=c6b31aad20e4e41b42ef5f7e0ed5c708496446f4;hb=7f579b076a1fc54587538ead07e506e7f06f3fe8;hp=34b027d38a1bbb1d942b828a35280ba4dcc6ba1c;hpb=5f466d0621f0cb549b80d48abfa7af8d7dc01a34;p=sbcl.git diff --git a/src/compiler/policy.lisp b/src/compiler/policy.lisp index 34b027d..c6b31aa 100644 --- a/src/compiler/policy.lisp +++ b/src/compiler/policy.lisp @@ -75,14 +75,17 @@ EXPERIMENTAL INTERFACE: Subject to change." (assq x *policy-dependent-qualities*))) ;;; Is it deprecated? -(defun policy-quality-deprecation-warning (quality spec) - (when (member quality '(stack-allocate-dynamic-extent stack-allocate-vector - stack-allocate-value-cells)) - (make-instance 'simple-reference-warning - :format-control "~@" - :format-arguments (list quality spec) - :references (list '(:sbcl :variable *stack-allocate-dynamic-extent*) - '(:sbcl :node "Dynamic-extent allocation"))))) +(defun policy-quality-deprecation-warning (quality) + (case quality + ((stack-allocate-dynamic-extent stack-allocate-vector stack-allocate-value-cells) + (deprecation-warning :late "1.0.19.7" quality '*stack-allocate-dynamic-extent* + :runtime-error nil) + t) + ((merge-tail-calls) + (deprecation-warning :early "1.0.53.74" quality nil :runtime-error nil) + t) + (otherwise + nil))) ;;; *POLICY* holds the current global compiler policy information, as ;;; an alist mapping from optimization quality name to quality value.