OSDN Git Service

Fix a memory leak in llc.
authorDan Gohman <gohman@apple.com>
Wed, 16 Apr 2008 15:56:26 +0000 (15:56 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 16 Apr 2008 15:56:26 +0000 (15:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49793 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llc/llc.cpp

index 929f702..729588d 100644 (file)
@@ -246,7 +246,8 @@ int main(int argc, char **argv) {
     PM.run(mod);
   } else {
     // Build up all of the passes that we want to do to the module.
-    FunctionPassManager Passes(new ExistingModuleProvider(M.get()));
+    ExistingModuleProvider Provider(M.release());
+    FunctionPassManager Passes(&Provider);
     Passes.add(new TargetData(*Target.getTargetData()));
     
 #ifndef NDEBUG