From 2f584d1b6372dfe8dfa4d1597dc03e4fd2e8aed7 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Tue, 16 Nov 1993 18:17:27 +0000 Subject: [PATCH] Change "inline expansion count exceeded" warning to be a note. --- compiler/ir1util.lisp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/compiler/ir1util.lisp b/compiler/ir1util.lisp index 3073b4719..077508460 100644 --- a/compiler/ir1util.lisp +++ b/compiler/ir1util.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.72 1993/08/31 12:50:25 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.73 1993/11/16 18:17:27 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1503,10 +1503,10 @@ (cond ((> expanded *inline-expansion-limit*) nil) ((= expanded *inline-expansion-limit*) (let ((*compiler-error-context* node)) - (compiler-warning "*Inline-Expansion-Limit* (~D) exceeded, ~ - probably trying to~% ~ - inline a recursive function." - *inline-expansion-limit*)) + (compiler-note "*Inline-Expansion-Limit* (~D) exceeded, ~ + probably trying to~% ~ + inline a recursive function." + *inline-expansion-limit*)) nil) (t t)))) -- GitLab