Speed up vector extension in VECTOR-PUSH-EXTEND.
[sbcl.git] / src / code / globals.lisp
blob1326ae209a4a890e4bc76a0a0bf3dcae4f4428b9
1 ;;;; This file contains special proclamations for variables that are
2 ;;;; referenced in the code sources before they are defined. There are
3 ;;;; also function proclamations to make some common functions be
4 ;;;; known, avoiding work in recording the calls that are done before
5 ;;;; the definition.
7 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; more information.
9 ;;;;
10 ;;;; This software is derived from the CMU CL system, which was
11 ;;;; written at Carnegie Mellon University and released into the
12 ;;;; public domain. The software is in the public domain and is
13 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
14 ;;;; files for more information.
16 (in-package "SB!IMPL")
18 (declaim (special sb!debug:*in-the-debugger*
19 sb!debug:*stack-top-hint*
20 *handler-clusters*
21 *restart-clusters*
22 *in-without-gcing* *gc-inhibit* *gc-pending*
23 #!+sb-thread *stop-for-gc-pending*
24 #!+sb-dynamic-core sb!vm::*required-runtime-c-symbols*
25 *load-verbose*
26 *posix-argv*))