[CPU] Avoid using xmm0 for input to store_emitter (#6566)

This commit is contained in:
Tingqian Li 2022-02-21 15:02:31 +08:00 committed by GitHub
parent f7a85c59fe
commit 2cc6629624
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,7 +100,7 @@ private:
const int step = vlen / sizeof(float); const int step = vlen / sizeof(float);
Vmm vmm_mask = Vmm(0); Vmm vmm_mask = Vmm(0);
Vmm vmm_zero = Vmm(0); Vmm vmm_zero = Vmm(2); // avoid using xmm0 (reserved as mask reg in sse41-instruction blendvps)
Xmm xmm_yf = Xmm(0); Xmm xmm_yf = Xmm(0);
Vmm vmm_yf = Vmm(0); Vmm vmm_yf = Vmm(0);