Revert changes r97693, r97700, and r97718.

Our testing framework can't deal with disabled targets yet.

llvm-svn: 97719
This commit is contained in:
John McCall
2010-03-04 04:29:44 +00:00
parent 61076e1d87
commit 731be6620c
15 changed files with 62 additions and 132 deletions

View File

@@ -40,12 +40,11 @@ using namespace CodeGen;
CodeGenModule::CodeGenModule(ASTContext &C, const CodeGenOptions &CGO,
llvm::Module &M, const llvm::TargetMachine &TM,
const llvm::TargetData &TD, Diagnostic &diags)
llvm::Module &M, const llvm::TargetData &TD,
Diagnostic &diags)
: BlockModule(C, M, TD, Types, *this), Context(C),
Features(C.getLangOptions()), CodeGenOpts(CGO), TheModule(M),
TheTargetMachine(TM), TheTargetData(TD), TheTargetCodeGenInfo(0),
Diags(diags),
TheTargetData(TD), TheTargetCodeGenInfo(0), Diags(diags),
Types(C, M, TD, getTargetCodeGenInfo().getABIInfo()),
MangleCtx(C), VtableInfo(*this), Runtime(0),
MemCpyFn(0), MemMoveFn(0), MemSetFn(0), CFConstantStringClassRef(0),