diff options
Diffstat (limited to 'projects/Stacker/lib/compiler')
-rw-r--r-- | projects/Stacker/lib/compiler/StackerCompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/Stacker/lib/compiler/StackerCompiler.cpp b/projects/Stacker/lib/compiler/StackerCompiler.cpp index 339c8afb3c..b9e41a889c 100644 --- a/projects/Stacker/lib/compiler/StackerCompiler.cpp +++ b/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()); |