From: David Blaikie Date: Mon, 21 Jul 2014 16:13:24 +0000 (+0000) Subject: Remove unused variable. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=370a67a56c97a72c915206b62b03859c47e4945b;p=platform%2Fupstream%2Fllvm.git Remove unused variable. llvm-svn: 213554 --- diff --git a/llvm/lib/Object/Archive.cpp b/llvm/lib/Object/Archive.cpp index 6d09bdb..6387791 100644 --- a/llvm/lib/Object/Archive.cpp +++ b/llvm/lib/Object/Archive.cpp @@ -177,7 +177,6 @@ Archive::Child::getMemoryBuffer(bool FullPath) const { ErrorOr> Archive::Child::getAsBinary(LLVMContext *Context) const { - std::unique_ptr ret; ErrorOr> BuffOrErr = getMemoryBuffer(); if (std::error_code EC = BuffOrErr.getError()) return EC;