1.0.42.11: reinline nested LIST and VECTOR calls in MAKE-ARRAY initial-contents
* Fixes lp#586105.
* The source transform for MAKE-ARRAY makes LIST and VECTOR notinline
so that the deftransforms can pick initial-contents and dimensions
apart.
However, when a list or vector in initial-contents is not part of
the initialization structure but an actual initialization value,
then notinline loses both performance in general, and foils nested
DX in particular.
So, walk the initial-contents and restore inlining for the actual
initialization values.