To set/clear flags in the CLA status register MSTF, we can use something like this assembly
MSETFLG RNDF32=1
but there is also a CLA intrinsic
__msetflg(unsigned short, unsigned short)
that we can call in C code according to spru514. But the compiler guide doesn't really explain what the arguments signify.
I am unsure of the arguments to __msetflg and how to specify the RNDF32 flag of the MSTF register.
I thought maybe it was by bit position so __msetflg(9, 1) but that doesn't seem to work.