view test/test_shift.h @ 40:55cadb1fac4b

*: add mod operation, add GCC vector backend need to test it with old gcc though. :)
author Paper <paper@tflc.us>
date Sun, 27 Apr 2025 02:49:53 -0400
parents 4b5a557aa64f
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;
}