hadamard_test: align src/dst buffers

fixes crash in 32-bit builds

Change-Id: I149e517c940a8cd43643e213bfbe077b6f579090
This commit is contained in:
James Zern 2016-04-22 00:06:49 -07:00
parent 1710419eb5
commit 9222d467e7

View File

@ -71,7 +71,9 @@ void reference_hadamard(const int16_t *a, int a_stride, int16_t *b) {
} }
TEST_P(HadamardTest, CompareReferenceRandom) { TEST_P(HadamardTest, CompareReferenceRandom) {
int16_t a[64], b[64], b_ref[64]; DECLARE_ALIGNED(16, int16_t, a[64]);
DECLARE_ALIGNED(16, int16_t, b[64]);
int16_t b_ref[64];
for (int i = 0; i < 64; i++) { for (int i = 0; i < 64; i++) {
a[i] = rnd_.Rand9Signed(); a[i] = rnd_.Rand9Signed();
} }
@ -88,7 +90,9 @@ TEST_P(HadamardTest, CompareReferenceRandom) {
} }
TEST_P(HadamardTest, VaryStride) { TEST_P(HadamardTest, VaryStride) {
int16_t a[64 * 8], b[64], b_ref[64]; DECLARE_ALIGNED(16, int16_t, a[64 * 8]);
DECLARE_ALIGNED(16, int16_t, b[64]);
int16_t b_ref[64];
for (int i = 0; i < 64 * 8; i++) { for (int i = 0; i < 64 * 8; i++) {
a[i] = rnd_.Rand9Signed(); a[i] = rnd_.Rand9Signed();
} }