Jeff Sturm writes: > On 2002年6月10日, Andrew Haley wrote: > > + unsigned int* stack = (unsigned int*)elements(stackArr); > > > > You'll get alignment faults if you do this -- you can't cast a jbyte* > > to a jlong*. > > True in general, but isn't the 0th array element guaranteed to be > word-aligned in this case? No; it may break on Alpha. Andrew.