On Tue, Feb 28, 2012 at 02:01:45PM +0100, Richard Guenther wrote: > I guess using __INT64_TYPE__ is more portable to weird targets > though. I integrated the other testcase changes though.
To which weird targets? We support long long on all targets, and the C standard guarantees it is at least 64-bit wide. And, the testcase doesn't anywhere actually need a 64-bit type on weird targets, it needs any type that is 64-bit on i?86/x86_64. If you want absolute portability, just replace 16 with 2 * sizeof (long long) in the vector_size attribute argument. Jakub