>From reading the CMUCL manual, it seems that block compilation might help my application. As per the description (in 5.7.1), I attempted to define a block with a single entry point by using
(declaim (start-block extract-speech-params)) before a bunch of function declarations, and (declaim (end-block)) afterwards. However, this simply produced two compiler warnings, saying that start-block and end-block were unrecognized declarations. Can someone point me in the right direction? rif
