mirror of https://gitee.com/openkylin/qemu.git
cutils: allow compilation with icc
Use VEC_OR macro for operations on VECTYPE operands Signed-off-by: Artyom Tarasenko <atar4qemu@gmail.com> Message-Id: <3f62d7a3a265f7dd99e50d016a0333a99a4a082a.1435062067.git.atar4qemu@gmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
34664507c7
commit
27e7755bea
|
@ -207,13 +207,13 @@ size_t buffer_find_nonzero_offset(const void *buf, size_t len)
|
|||
for (i = BUFFER_FIND_NONZERO_OFFSET_UNROLL_FACTOR;
|
||||
i < len / sizeof(VECTYPE);
|
||||
i += BUFFER_FIND_NONZERO_OFFSET_UNROLL_FACTOR) {
|
||||
VECTYPE tmp0 = p[i + 0] | p[i + 1];
|
||||
VECTYPE tmp1 = p[i + 2] | p[i + 3];
|
||||
VECTYPE tmp2 = p[i + 4] | p[i + 5];
|
||||
VECTYPE tmp3 = p[i + 6] | p[i + 7];
|
||||
VECTYPE tmp01 = tmp0 | tmp1;
|
||||
VECTYPE tmp23 = tmp2 | tmp3;
|
||||
if (!ALL_EQ(tmp01 | tmp23, zero)) {
|
||||
VECTYPE tmp0 = VEC_OR(p[i + 0], p[i + 1]);
|
||||
VECTYPE tmp1 = VEC_OR(p[i + 2], p[i + 3]);
|
||||
VECTYPE tmp2 = VEC_OR(p[i + 4], p[i + 5]);
|
||||
VECTYPE tmp3 = VEC_OR(p[i + 6], p[i + 7]);
|
||||
VECTYPE tmp01 = VEC_OR(tmp0, tmp1);
|
||||
VECTYPE tmp23 = VEC_OR(tmp2, tmp3);
|
||||
if (!ALL_EQ(VEC_OR(tmp01, tmp23), zero)) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue