summarylogtreecommitdiffstats
path: root/llvm-Config-config.h
diff options
context:
space:
mode:
authorMarat Kh. Akhin2015-07-01 12:56:08 +0300
committerMarat Kh. Akhin2015-07-01 12:56:08 +0300
commit7b745c0704737ab037e35dc7ea9b18684fe73d30 (patch)
treefe96d6176efa4013bd66a8a4b35f45a3dc48db84 /llvm-Config-config.h
downloadaur-7b745c0704737ab037e35dc7ea9b18684fe73d30.tar.gz
Initial commit
Diffstat (limited to 'llvm-Config-config.h')
-rw-r--r--llvm-Config-config.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm-Config-config.h b/llvm-Config-config.h
new file mode 100644
index 000000000000..c369b4551f78
--- /dev/null
+++ b/llvm-Config-config.h
@@ -0,0 +1,9 @@
+#include <bits/wordsize.h>
+
+#if __WORDSIZE == 32
+#include "config-32.h"
+#elif __WORDSIZE == 64
+#include "config-64.h"
+#else
+#error "Unknown word size"
+#endif