8000 This is dead code. (#1095) · JavaScriptExpert/simdjson@75c75ac · GitHub
[go: up one dir, main page]

Skip to content

Commit 75c75ac

Browse files
authored
This is dead code. (simdjson#1095)
1 parent d9bcf52 commit 75c75ac

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

include/simdjson/common_defs.h

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,6 @@ constexpr size_t DEFAULT_MAX_DEPTH = 1024;
4747
#define DEBUG_BLOCK(name, block)
4848
#endif
4949

50-
#if !defined(SIMDJSON_REGULAR_VISUAL_STUDIO) && !defined(SIMDJSON_NO_COMPUTED_GOTO)
51-
// We assume here that *only* regular visual studio
52-
// does not support computed gotos.
53-
// Implemented using Labels as Values which works in GCC and CLANG (and maybe
54-
// also in Intel's compiler), but won't work in MSVC.
55-
// Compute gotos are good for performance, enable them if you can.
56-
#define SIMDJSON_USE_COMPUTED_GOTO
57-
#endif
58-
5950
// Align to N-byte boundary
6051
#define ROUNDUP_N(a, n) (((a) + ((n)-1)) & ~((n)-1))
6152
#define ROUNDDOWN_N(a, n) ((a) & ~((n)-1))

0 commit comments

Comments
 (0)
0