summaryrefslogtreecommitdiffstats
path: root/llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-06-16 18:23:49 +0000
committerChris Lattner <sabre@nondot.org>2006-06-16 18:23:49 +0000
commit16cf81306ec37bf8a8a2038394ddb003c7b3c1c6 (patch)
treeaaa5eebb12bbd51523ff44fbfd29032023746652 /llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp
parentf3b5b92e5865913119da457fd0d11db1cfd87532 (diff)
downloadbcm5719-llvm-16cf81306ec37bf8a8a2038394ddb003c7b3c1c6.tar.gz
bcm5719-llvm-16cf81306ec37bf8a8a2038394ddb003c7b3c1c6.zip
Don't pass target name into TargetData anymore, it is never used or needed.
llvm-svn: 28831
Diffstat (limited to 'llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp')
-rw-r--r--llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp b/llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp
index 339c8afb3cd..b9e41a889ce 100644
--- a/llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp
+++ b/llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp
@@ -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());
OpenPOWER on IntegriCloud