For PR1151:
authorReid Spencer <rspencer@reidspencer.com>
Sun, 4 Feb 2007 01:05:23 +0000 (01:05 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sun, 4 Feb 2007 01:05:23 +0000 (01:05 +0000)
Make llvm-upgrade valgrind clean. Deleting type instances is a really
nasty thing to do to LLVM. This was a hold-over from the re-write.
This fixes test/Assembler/2007-01-22-UpgradeTypeMapInvalidMemory.ll and
potentially many other bugs.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33858 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-upgrade/UpgradeParser.y

index cf36340d46cb66fc31473f7bdf4955491cf9c958..34ebd62a41337a2a6b12f8772ce1e94328d96f79 100644 (file)
@@ -1804,7 +1804,6 @@ UpRTypes
     for (std::list<llvm::PATypeInfo>::iterator I = $3->begin(),
            E = $3->end(); I != E; ++I) {
       Params.push_back(I->T->get());
-      delete I->T;
     }
     FunctionType::ParamAttrsList ParamAttrs;
     if (CurFun.LastCC == OldCallingConv::CSRet) {