From: Jeffrey Yasskin Date: Sat, 13 Mar 2010 01:39:20 +0000 (+0000) Subject: Remove a memory leak from MetadataTest. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=9d0b3dda1e44b5160697d8b2d993c4e4e0db2a6e;p=oota-llvm.git Remove a memory leak from MetadataTest. Tested: valgrind --leak-check=full unittests/VMCore/Debug/VMCoreTests git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98412 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/VMCore/MetadataTest.cpp b/unittests/VMCore/MetadataTest.cpp index 13bf27e5d8f..04db486cd87 100644 --- a/unittests/VMCore/MetadataTest.cpp +++ b/unittests/VMCore/MetadataTest.cpp @@ -132,9 +132,9 @@ TEST(NamedMDNodeTest, Search) { MDNode *Nodes[2] = { n, n2 }; - Module *M = new Module("MyModule", Context); + Module M("MyModule", Context); const char *Name = "llvm.NMD1"; - NamedMDNode *NMD = NamedMDNode::Create(Context, Name, &Nodes[0], 2, M); + NamedMDNode *NMD = NamedMDNode::Create(Context, Name, &Nodes[0], 2, &M); std::string Str; raw_string_ostream oss(Str); NMD->print(oss);