>>>>> "Alex" == Alex Rosenberg <alexr@spies.com> writes:
> void entrypoint(...)
> {
> #pragma altivec_vrsave allon
> do_work();
> }
> ..
Well if you're going to do that, why not wrap the entire
program in:
main()
{
asm("set all vrsave bits to on");
do stuff
asm("set all vrsave bits to off");
}
aldy