diff --git a/compiler/ir1util.lisp b/compiler/ir1util.lisp
index 0a994e0da6cac8522ff84841f2754993382e8503..5d327ace6d311e900a2fe06546867e34f769e8ff 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.31 1991/03/10 18:30:42 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.32 1991/03/11 16:05:25 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1701,10 +1701,10 @@ inlines
   (print-error-message :warning format-string format-args))
 ;;;
 (defun compiler-note (format-string &rest format-args)
-  (incf *compiler-note-count*)
   (unless (if *compiler-error-context*
 	      (policy *compiler-error-context* (= brevity 3))
 	      (policy nil (= brevity 3)))
+    (incf *compiler-note-count*)
     (print-error-message :note format-string format-args)))