aboutsummaryrefslogtreecommitdiff
path: root/c++tools
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@acm.org>2021-01-04 06:38:52 -0800
committerNathan Sidwell <nathan@acm.org>2021-01-04 06:38:52 -0800
commit6288183377a0dc8f02ad415eb1ac9338507445aa (patch)
tree3cfcd8c055d24a634e0dd698c76acd4b77e5e3a2 /c++tools
parent6bbc196c64ddbbb84fd40eebeafbd5a458b50afb (diff)
downloadgcc-6288183377a0dc8f02ad415eb1ac9338507445aa.zip
gcc-6288183377a0dc8f02ad415eb1ac9338507445aa.tar.gz
gcc-6288183377a0dc8f02ad415eb1ac9338507445aa.tar.bz2
[libcody] Remove some std::move [PR 98368]
Compiling on clang showed a couple of pessimizations. Fixed thusly. libcody/ * client.cc (Client::ProcessResponse): Remove std::move inside ?: c++tools/ * resolver.cc (module_resolver::cmi_response): Remove std::move of temporary.
Diffstat (limited to 'c++tools')
-rw-r--r--c++tools/resolver.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/c++tools/resolver.cc b/c++tools/resolver.cc
index c8d3115..ef08de5 100644
--- a/c++tools/resolver.cc
+++ b/c++tools/resolver.cc
@@ -226,9 +226,7 @@ module_resolver::cmi_response (Cody::Server *s, std::string &module)
auto iter = map.find (module);
if (iter == map.end ())
{
- std::string file;
- if (default_map)
- file = std::move (GetCMIName (module));
+ std::string file = default_map ? GetCMIName (module) : std::string ();
auto res = map.emplace (module, file);
iter = res.first;
}