Dear All,
I am asking about setting max and min value for _sshvl
here what I found in programmer guide
"Shifts src2 to the left/right of src1 bits. Saturates
the result if the shifted value is
greater than MAX_INT or less than
MIN_INT"
I made
#define MAX_INT 32567
#define MIN_INT -32568
and in the function i write
y = _sshvl( 6000 , 8)
and i still find y doesnt saturate to the max int i defined
any suggestions ?