Remove 'axle' related code and build machinery. It turns out that we

will not be pursuing this project in the immediate future.



Swift SVN r9901
This commit is contained in:
Chris Lattner
2013-11-03 16:04:27 +00:00
parent beab485db3
commit 68af974227
58 changed files with 39 additions and 1638 deletions

View File

@@ -28,7 +28,6 @@
#include "llvm/ADT/PointerUnion.h"
#include "llvm/Support/ErrorHandling.h"
#include "GenAxleMeta.h"
#include "GenType.h"
#include "IRGenModule.h"
#include "IRGenDebugInfo.h"
@@ -66,7 +65,7 @@ IRGenModule::IRGenModule(ASTContext &Context,
: Context(Context), Opts(Opts), Module(Module),
LLVMContext(Module.getContext()), DataLayout(DataLayout),
SILMod(SILMod), TargetInfo(SwiftTargetInfo::get(*this)),
DebugInfo(0), AxleMeta(0), Types(*new TypeConverter(*this))
DebugInfo(0), Types(*new TypeConverter(*this))
{
VoidTy = llvm::Type::getVoidTy(getLLVMContext());
@@ -206,8 +205,6 @@ IRGenModule::IRGenModule(ASTContext &Context,
DebugInfo = new IRGenDebugInfo(Opts, CI->getTargetInfo(), Types,
Context, Module);
}
if (Context.LangOpts.Axle)
AxleMeta = new axle::GenAxleMeta(Module);
}
IRGenModule::~IRGenModule() {