Remove now unused Module argument to createTargetMachine.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78043 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar
2009-08-04 04:02:45 +00:00
parent 2822e174f6
commit 214e22396f
6 changed files with 17 additions and 41 deletions

View File

@ -51,7 +51,7 @@ using namespace llvm;
extern "C" void LLVMInitializeCBackendTarget() {
// Register the target.
RegisterTargetMachineDeprecated<CTargetMachine> X(TheCBackendTarget);
RegisterTargetMachine<CTargetMachine> X(TheCBackendTarget);
}
namespace {