resolving conficts after merging

This commit is contained in:
apostolos
2021-11-13 18:58:22 +02:00
31 changed files with 1283 additions and 322 deletions

View File

@@ -30,7 +30,7 @@
#include "config.h"
#include "gtest/gtest.h"
#include "nfa/vermicelli.h"
#include "nfa/vermicelli.hpp"
#define BOUND (~(VERM_BOUNDARY - 1))
@@ -563,4 +563,4 @@ TEST(RNVermicelli16, Exec5) {
}
}
#endif // HAVE_SVE2
#endif // HAVE_SVE2

View File

@@ -671,6 +671,7 @@ TEST(SimdUtilsTest, movq) {
#elif defined(ARCH_PPC64EL)
int64x2_t a = {0x123456789abcdefLL, ~0LL };
simd = (m128) a;
simd = vreinterpretq_s32_s64(a);
#endif
#endif
r = movq(simd);

View File

@@ -30,7 +30,7 @@
#include "config.h"
#include "gtest/gtest.h"
#include "nfa/vermicelli.h"
#include "nfa/vermicelli.hpp"
TEST(Vermicelli, ExecNoMatch1) {
char t1[] = "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb";
@@ -1150,4 +1150,4 @@ TEST(DoubleVermicelliMasked16, Exec5) {
}
}
#endif // HAVE_SVE2
#endif // HAVE_SVE2