| 13499 | } |
| 13500 | |
| 13501 | result_t SSE2NEONTestImpl::runSingleTest(InstructionTest test, uint32_t i) |
| 13502 | { |
| 13503 | result_t ret = TEST_SUCCESS; |
| 13504 | |
| 13505 | switch (test) { |
| 13506 | #define _(x) \ |
| 13507 | case it_##x: \ |
| 13508 | ret = test_##x(*this, i); \ |
| 13509 | break; |
| 13510 | INTRIN_LIST |
| 13511 | #undef _ |
| 13512 | } |
| 13513 | |
| 13514 | return ret; |
| 13515 | } |
| 13516 | |
| 13517 | SSE2NEONTest *SSE2NEONTest::create(void) |
| 13518 | { |
nothing calls this directly
no outgoing calls
no test coverage detected