| Index: crosstest/test_cast_main.cpp
|
| diff --git a/crosstest/test_cast_main.cpp b/crosstest/test_cast_main.cpp
|
| index 4596bfa34ad0f52175a77d76238d9f0f806057bf..97e71810229e472567b5c668ff7647c7f8c9c916 100644
|
| --- a/crosstest/test_cast_main.cpp
|
| +++ b/crosstest/test_cast_main.cpp
|
| @@ -92,6 +92,8 @@ void testValue(FromType Val, size_t &TotalTests, size_t &Passes,
|
| template <typename FromType, typename ToType>
|
| void testVector(size_t &TotalTests, size_t &Passes, size_t &Failures,
|
| const char *FromTypeString, const char *ToTypeString) {
|
| +#ifndef ARM32
|
| + // TODO(jpp): remove this once vector support is implemented.
|
| const static size_t NumElementsInType = Vectors<FromType>::NumElements;
|
| PRNG Index;
|
| static const float NegInf = -1.0 / 0.0;
|
| @@ -109,6 +111,7 @@ void testVector(size_t &TotalTests, size_t &Passes, size_t &Failures,
|
| }
|
| COMPARE_VEC(cast, FromType, ToType, Value, FromTypeString, ToTypeString);
|
| }
|
| +#endif // ARM32
|
| }
|
|
|
| #ifdef X8664_STACK_HACK
|
|
|