On 1/5/2012 7:07 PM, Manu wrote:
> The only thing the language needs to think about is a single typeless, 128bit,
> 16 byte aligned value.
Currently, you can do this on 64 bit Linux:
union V128
{
void[16] v;
real dummy;
}
as reals are aligned on 16 byte boundaries. I wonder how far that can be pushed.