Fix bot breakage in InstructionsTest.
authorEli Bendersky <eliben@google.com>
Wed, 26 Mar 2014 21:11:34 +0000 (21:11 +0000)
committerEli Bendersky <eliben@google.com>
Wed, 26 Mar 2014 21:11:34 +0000 (21:11 +0000)
Makes sure the Call dies before the Function

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

unittests/IR/InstructionsTest.cpp

index 94065289e2ea37332f1c512da8258e52faaec788..39a7d77a1070782c2933dac3180d6d8544fe6452 100644 (file)
@@ -62,7 +62,7 @@ TEST(InstructionsTest, CallInst) {
   Value *Args[] = {ConstantInt::get(Type::getInt8Ty(C), 20),
                    ConstantInt::get(Type::getInt32Ty(C), 9999),
                    ConstantInt::get(Type::getInt64Ty(C), 42)};
-  CallInst *Call = CallInst::Create(F, Args);
+  std::unique_ptr<CallInst> Call(CallInst::Create(F, Args));
 
   // Make sure iteration over a call's arguments works as expected.
   unsigned Idx = 0;