view test/test_shift.h @ 37:4b5a557aa64f

*: turns out extern is a practical joke. rewrite to be always inline again the sample benchmark performs about 3x as well with optimizations disabled :)
author Paper <paper@tflc.us>
date Sat, 26 Apr 2025 01:04:35 -0400
parents 677c03c382b8
children
line wrap: on
line source

static int test_shift(void)
{
	int ret = 0;

	ret |= (vec_urshift(0xFFFFFFFF, 16) != 0xFFFF);
	ret |= (vec_ulshift(0xFFFF, 16) != 0xFFFF0000);
	ret |= (vec_rshift(-0xFFFF, 8) != -0x100);
	ret |= (vec_lshift(-0xFFFF, 8) != -0xFFFF00);

	return ret;
}