This should fix master.
This commit is contained in:
parent
3dae86223d
commit
c328afee57
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
#include "simdjson/stage1_find_marks.h"
|
#include "simdjson/stage1_find_marks.h"
|
||||||
#include "simdjson/stage1_find_marks_macros.h"
|
#include "simdjson/stage1_find_marks_macros.h"
|
||||||
#include "simdjson/stage1_find_marks_flatten_haswell.h"
|
#include "simdjson/stage1_find_marks_flatten.h"
|
||||||
#include "simdjson/simdutf8check_haswell.h"
|
#include "simdjson/simdutf8check_haswell.h"
|
||||||
|
|
||||||
#ifdef IS_X86_64
|
#ifdef IS_X86_64
|
||||||
|
|
|
@ -9,7 +9,7 @@ TARGET_HASWELL
|
||||||
namespace simdjson {
|
namespace simdjson {
|
||||||
template<>
|
template<>
|
||||||
int find_structural_bits<architecture::haswell>(const uint8_t *buf, size_t len, ParsedJson &pj) {
|
int find_structural_bits<architecture::haswell>(const uint8_t *buf, size_t len, ParsedJson &pj) {
|
||||||
FIND_STRUCTURAL_BITS(architecture::haswell, buf, len, pj, simdjson::haswell::flatten_bits);
|
FIND_STRUCTURAL_BITS(architecture::haswell, buf, len, pj, simdjson::flatten_bits);
|
||||||
}
|
}
|
||||||
} // simdjson
|
} // simdjson
|
||||||
UNTARGET_REGION
|
UNTARGET_REGION
|
||||||
|
|
Loading…
Reference in New Issue