Don't pass target name into TargetData anymore, it is never used or needed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28831 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2006-06-16 18:23:49 +00:00
parent 1790d44d0d
commit 831b121039
9 changed files with 9 additions and 9 deletions

View File

@ -264,7 +264,7 @@ StackerCompiler::compile(
// Set up a pass manager
PassManager Passes;
// Add in the passes we want to execute
Passes.add(new TargetData("stkrc",TheModule));
Passes.add(new TargetData(TheModule));
// Verify we start with valid
Passes.add(createVerifierPass());