On Wed, 9 Jan 2019 22:26:25 +0100
Carl Eugen Hoyos <ceffm...@gmail.com> wrote:

> > +#ifdef __GNUC__
> > +            // GCC does not support vmuluwm yet. Bug open.
> > +            __asm__("vmuluwm %0, %1, %2" : "=v"(vtmp) : "v"(vin32l),
> > "v"(vfilter[j]));
> > +            vleft = vec_add(vleft, vtmp);
> > +            __asm__("vmuluwm %0, %1, %2" : "=v"(vtmp) : "v"(vin32r),
> > "v"(vfilter[j]));
> > +            vright = vec_add(vright, vtmp);
> > +#else
> > +            // No idea which compilers this works in, untested. Copied from
> > libsimdpp
> > +            vtmp = vec_vmuluwm(vin32l, vfilter[j]);
> > +            vleft = vec_add(vleft, vtmp);
> > +            vtmp = vec_vmuluwm(vin32r, vfilter[j]);
> > +            vright = vec_add(vright, vtmp);
> > +#endif
> 
> Is there no xlc installed on your test system?
> I suspect an earlier patch from you already
> broke xlc compilation...

No, I don't really care about proprietary compilers. You reported
previously that xlc created invalid code anyway?

- Lauri
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to