chiark / gitweb /
Record pcre3 (2:8.35-7.1) in archive suite sid
[pcre3.git] / debian / jit-test.c
1 // This little program runs the macros in the SLJIT header file
2 // which auto-detect architecture. This enables us to only attempt
3 // to use SLJIT on architectures that support it
4 //
5 #define SLJIT_CONFIG_AUTO 1
6 #include "../sljit/sljitConfigInternal.h"
7
8 #ifndef SLJIT_CONFIG_UNSUPPORTED
9   #warning JIT enabled
10 #else
11   #error JIT not supported
12 #endif
13
14 int main(void)
15 {
16   return 0;
17 }