| Index: crosstest/test_arith_main.cpp
 | 
| diff --git a/crosstest/test_arith_main.cpp b/crosstest/test_arith_main.cpp
 | 
| index 49aa662c27e8c3ae74bbcdc6fc1e21cca8644c10..e95db4430ebd9172001227dc136c426de78c7e1c 100644
 | 
| --- a/crosstest/test_arith_main.cpp
 | 
| +++ b/crosstest/test_arith_main.cpp
 | 
| @@ -64,14 +64,14 @@ void testsInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
 | 
|  #define X(inst, op, isdiv, isshift)                                            \
 | 
|    { STR(inst), test##inst, Subzero_::test##inst, NULL, NULL, isdiv }           \
 | 
|    ,
 | 
| -        UINTOP_TABLE
 | 
| +      UINTOP_TABLE
 | 
|  #undef X
 | 
|  #define X(inst, op, isdiv, isshift)                                            \
 | 
|    { STR(inst), NULL, NULL, test##inst, Subzero_::test##inst, isdiv }           \
 | 
|    ,
 | 
| -            SINTOP_TABLE
 | 
| +          SINTOP_TABLE
 | 
|  #undef X
 | 
| -    };
 | 
| +  };
 | 
|    const static size_t NumFuncs = sizeof(Funcs) / sizeof(*Funcs);
 | 
|  
 | 
|    if (sizeof(TypeUnsigned) <= sizeof(uint32_t)) {
 | 
| @@ -177,14 +177,14 @@ void testsVecInt(size_t &TotalTests, size_t &Passes, size_t &Failures) {
 | 
|  #define X(inst, op, isdiv, isshift)                                            \
 | 
|    { STR(inst), test##inst, Subzero_::test##inst, NULL, NULL, isdiv, isshift }  \
 | 
|    ,
 | 
| -        UINTOP_TABLE
 | 
| +      UINTOP_TABLE
 | 
|  #undef X
 | 
|  #define X(inst, op, isdiv, isshift)                                            \
 | 
|    { STR(inst), NULL, NULL, test##inst, Subzero_::test##inst, isdiv, isshift }  \
 | 
|    ,
 | 
| -            SINTOP_TABLE
 | 
| +          SINTOP_TABLE
 | 
|  #undef X
 | 
| -    };
 | 
| +  };
 | 
|    const static size_t NumFuncs = sizeof(Funcs) / sizeof(*Funcs);
 | 
|    const static size_t NumElementsInType = Vectors<TypeUnsigned>::NumElements;
 | 
|    for (size_t f = 0; f < NumFuncs; ++f) {
 | 
| @@ -247,9 +247,9 @@ void testsFp(size_t &TotalTests, size_t &Passes, size_t &Failures) {
 | 
|  #define X(inst, op, func)                                                      \
 | 
|    { STR(inst), (FuncType)test##inst, (FuncType)Subzero_::test##inst }          \
 | 
|    ,
 | 
| -        FPOP_TABLE
 | 
| +      FPOP_TABLE
 | 
|  #undef X
 | 
| -    };
 | 
| +  };
 | 
|    const static size_t NumFuncs = sizeof(Funcs) / sizeof(*Funcs);
 | 
|  
 | 
|    for (size_t f = 0; f < NumFuncs; ++f) {
 | 
| @@ -306,9 +306,9 @@ void testsVecFp(size_t &TotalTests, size_t &Passes, size_t &Failures) {
 | 
|  #define X(inst, op, func)                                                      \
 | 
|    { STR(inst), (FuncType)test##inst, (FuncType)Subzero_::test##inst }          \
 | 
|    ,
 | 
| -        FPOP_TABLE
 | 
| +      FPOP_TABLE
 | 
|  #undef X
 | 
| -    };
 | 
| +  };
 | 
|    const static size_t NumFuncs = sizeof(Funcs) / sizeof(*Funcs);
 | 
|    const static size_t NumElementsInType = 4;
 | 
|    for (size_t f = 0; f < NumFuncs; ++f) {
 | 
| 
 |