We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c61b065 + d236940 commit f6da963Copy full SHA for f6da963
.gitignore
@@ -10,3 +10,4 @@ a.out
10
*.txt
11
.ghc.environment.*
12
/cabal.project.local
13
+/.vscode/ipch
cbits/debug.h
@@ -76,15 +76,9 @@ inline void hw_simd_json_print_bits_64(uint64_t v) {
76
77
#if defined __AVX2__
78
inline void hw_simd_json_print_bits_128(__m128i v) {
79
- int i = 0;
80
-
81
- for (i = 0; i < 2; ++i) {
82
- if (i > 0) {
83
- printf("-");
84
- }
85
86
- hw_simd_json_print_bits_64(_mm_extract_epi64(v, i));
87
+ hw_simd_json_print_bits_64(_mm_extract_epi64(v, 0));
+ printf("-");
+ hw_simd_json_print_bits_64(_mm_extract_epi64(v, 1));
88
}
89
#endif//__AVX2__
90
0 commit comments