New package: llvm-git

This commit is contained in:
John Galt 2014-07-21 22:23:29 -07:00
parent 71f9072cc9
commit 471d45df63
8 changed files with 159 additions and 0 deletions

View file

@ -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