292d78db5c
This fixes running the tests when built with clang in debug mode. This was accidentally broken in 6e815e708 when switched to using ENFORCE_STACK_ALIGN_1D instead of manually aligning the buffers. Previously the aligned pointer always had at least 16 bytes of extra space in the stack before the pointer, so using [-1] was ok, while now when using ENFORCE_STACK_ALIGN_1D, it's only guaranteed that the pointer itself is aligned, but not that there's any extra space before the pointer. Therefore, we need to manually offset everything by one kiStride extra. (This already was accounted for in the total number of bytes allocated for the array.)