From 3cdf5516c6009c2a119128fdac3afca1ed503207 Mon Sep 17 00:00:00 2001 From: Aidan Dodds Date: Fri, 26 Feb 2016 18:03:06 +0000 Subject: [PATCH] remove unused local string in IRForTarget.cpp Committed on behalf of: ldrumm Differential revision: http://reviews.llvm.org/D16412 llvm-svn: 262043 --- lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp b/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp index 78435698f47a..ef65d23d96e1 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp +++ b/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp @@ -134,8 +134,6 @@ IRForTarget::FixFunctionLinkage(llvm::Function &llvm_function) { llvm_function.setLinkage(GlobalValue::ExternalLinkage); - std::string name = llvm_function.getName().str(); - return true; }