summaryrefslogtreecommitdiff
path: root/debian/jit-test.c
blob: e476e08f853a1fcc76526d810b15de3706f64029 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// This little program runs the macros in the SLJIT header file
// which auto-detect architecture. This enables us to only attempt
// to use SLJIT on architectures that support it
//
#define SLJIT_CONFIG_AUTO 1
#include "../sljit/sljitConfigInternal.h"

#ifndef SLJIT_CONFIG_UNSUPPORTED
  #warning JIT enabled
#else
  #error JIT not supported
#endif

int main(void)
{
  return 0;
}