Support for vector expectations and memory init in alloy-ppc-test.

This commit is contained in:
Ben Vanik
2014-10-25 11:43:24 -07:00
parent 009ff4e80f
commit e267a6d25e
3 changed files with 48 additions and 3 deletions

View File

@@ -104,6 +104,9 @@ typedef struct alignas(16) vec128_s {
bool operator==(const vec128_s& b) const {
return low == b.low && high == b.high;
}
bool operator!=(const vec128_s& b) const {
return low != b.low || high != b.high;
}
} vec128_t;
static inline vec128_t vec128i(uint32_t src) {