2018-07-11 15:37:36 +02:00
|
|
|
#include <bits/wordsize.h>
|
2018-06-09 00:06:58 +02:00
|
|
|
|
2018-07-11 15:37:36 +02:00
|
|
|
#if __WORDSIZE == 32
|
|
|
|
#include "llvm-config-32.h"
|
|
|
|
#elif __WORDSIZE == 64
|
2018-06-09 00:06:58 +02:00
|
|
|
#include "llvm-config-64.h"
|
|
|
|
#else
|
2018-07-11 15:37:36 +02:00
|
|
|
#error "Unknown word size"
|
2018-06-09 00:06:58 +02:00
|
|
|
#endif
|