diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2010-03-13 01:34:56 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2010-03-13 01:34:56 +0000 |
commit | 645a86f5fbabf807e06056325d3dc5a898062753 (patch) | |
tree | 5c374557a693c7604f8b5743411b16bf64992ed3 /unittests | |
parent | 6f555ca2cd0bba50542adcbb131f541ae70d34cd (diff) | |
download | external_llvm-645a86f5fbabf807e06056325d3dc5a898062753.zip external_llvm-645a86f5fbabf807e06056325d3dc5a898062753.tar.gz external_llvm-645a86f5fbabf807e06056325d3dc5a898062753.tar.bz2 |
Remove a memory leak from VerifierTest.
Tested: valgrind --leak-check=full unittests/VMCore/Debug/VMCoreTests
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98411 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/VMCore/VerifierTest.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/unittests/VMCore/VerifierTest.cpp b/unittests/VMCore/VerifierTest.cpp index c8838c5..1173b2d 100644 --- a/unittests/VMCore/VerifierTest.cpp +++ b/unittests/VMCore/VerifierTest.cpp @@ -12,6 +12,7 @@ #include "llvm/Function.h" #include "llvm/Instructions.h" #include "llvm/LLVMContext.h" +#include "llvm/ADT/OwningPtr.h" #include "llvm/Analysis/Verifier.h" #include "gtest/gtest.h" @@ -21,9 +22,9 @@ namespace { TEST(VerifierTest, Branch_i1) { LLVMContext &C = getGlobalContext(); FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false); - Function *F = Function::Create(FTy, GlobalValue::ExternalLinkage); - BasicBlock *Entry = BasicBlock::Create(C, "entry", F); - BasicBlock *Exit = BasicBlock::Create(C, "exit", F); + OwningPtr<Function> F(Function::Create(FTy, GlobalValue::ExternalLinkage)); + BasicBlock *Entry = BasicBlock::Create(C, "entry", F.get()); + BasicBlock *Exit = BasicBlock::Create(C, "exit", F.get()); ReturnInst::Create(C, Exit); // To avoid triggering an assertion in BranchInst::Create, we first create |