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.
1 parent 8e77532 commit 58dc0aaCopy full SHA for 58dc0aa
ext/json/ext/simd/conf.rb
@@ -3,8 +3,9 @@
3
if have_header('arm_neon.h')
4
have_type('uint8x16_t', headers=['arm_neon.h']) && try_compile(<<~'SRC')
5
#include <arm_neon.h>
6
- int main() {
+ int main(int argc, char **argv) {
7
uint8x16_t test = vdupq_n_u8(32);
8
+ if (argc > 100000) printf("%p", &test);
9
return 0;
10
}
11
SRC
@@ -14,8 +15,9 @@
14
15
16
if have_header('x86intrin.h') && have_type('__m128i', headers=['x86intrin.h']) && try_compile(<<~'SRC')
17
#include <x86intrin.h>
18
19
__m128i test = _mm_set1_epi8(32);
20
21
22
23
0 commit comments