"The Great Renaming" continues.

More changes to match the renamed files of LLVM 3.3.
This commit is contained in:
kai 2013-01-06 17:17:30 +01:00
parent 82a3216619
commit a11459bc31
27 changed files with 120 additions and 23 deletions

View file

@ -10,14 +10,21 @@
#include "gen/llvmcompat.h"
#include "llvm/Config/llvm-config.h"
#include "llvm/ADT/Triple.h"
#if LDC_LLVM_VER >= 303
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/Module.h"
#include "llvm/IR/IRBuilder.h"
#else
#include "llvm/DerivedTypes.h"
#include "llvm/Function.h"
#include "llvm/Module.h"
#if LDC_LLVM_VER >= 302
#if LDC_LLVM_VER == 302
#include "llvm/IRBuilder.h"
#else
#include "llvm/Support/IRBuilder.h"
#endif
#endif
#include <string>
#if LDC_LLVM_VER == 300