cd7e47d883
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/llvm#f5cf5703840587f202de6d09456fd611b5bb8b48
10 lines
168 B
C
10 lines
168 B
C
#include <bits/wordsize.h>
|
|
|
|
#if __WORDSIZE == 32
|
|
#include "llvm-config-32.h"
|
|
#elif __WORDSIZE == 64
|
|
#include "llvm-config-64.h"
|
|
#else
|
|
#error "Unknown word size"
|
|
#endif
|