diff options
author | John Baldwin <jhb@FreeBSD.org> | 2016-11-24 12:01:24 -0800 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2016-11-24 12:01:24 -0800 |
commit | 036e657b48144d7449ddfcfcf9214bcd7bcf268b (patch) | |
tree | 7f66ff5f93da7217b96a287d143318f985d70de7 | |
parent | bbe910e6e1140cb484a74911f3cea854cf9e7e2a (diff) | |
download | gdb-036e657b48144d7449ddfcfcf9214bcd7bcf268b.zip gdb-036e657b48144d7449ddfcfcf9214bcd7bcf268b.tar.gz gdb-036e657b48144d7449ddfcfcf9214bcd7bcf268b.tar.bz2 |
Do not use std::move when assigning an anonymous object to a unique_ptr.
Using std::move forces an extra copy of the object. These changes fix
-Wpessimizing-move warnings from clang.
gdb/ChangeLog:
* ada-lang.c (create_excep_cond_exprs): Do not use 'std::move'.
* ax-gdb.c (agent_eval_command_one): Likewise.
(agent_eval_command_one): Likewise.
* breakpoint.c (parse_cond_to_aexpr): Likewise.
(parse_cmd_to_aexpr): Likewise.
* dtrace-probe.c (dtrace_process_dof_probe): Likewise.
* parse.c (parse_expression_for_completion): Likewise.
-rw-r--r-- | gdb/ChangeLog | 10 | ||||
-rw-r--r-- | gdb/ada-lang.c | 6 | ||||
-rw-r--r-- | gdb/ax-gdb.c | 8 | ||||
-rw-r--r-- | gdb/breakpoint.c | 8 | ||||
-rw-r--r-- | gdb/dtrace-probe.c | 3 | ||||
-rw-r--r-- | gdb/parse.c | 2 |
6 files changed, 23 insertions, 14 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9dc2618..bceb862 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,15 @@ 2016-11-24 John Baldwin <jhb@FreeBSD.org> + * ada-lang.c (create_excep_cond_exprs): Do not use 'std::move'. + * ax-gdb.c (agent_eval_command_one): Likewise. + (agent_eval_command_one): Likewise. + * breakpoint.c (parse_cond_to_aexpr): Likewise. + (parse_cmd_to_aexpr): Likewise. + * dtrace-probe.c (dtrace_process_dof_probe): Likewise. + * parse.c (parse_expression_for_completion): Likewise. + +2016-11-24 John Baldwin <jhb@FreeBSD.org> + * common/new-op.c (operator new): Mark 'noexcept'. (operator new[]): Likewise. diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 0647a9b..78c7d6f 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -12343,9 +12343,9 @@ create_excep_cond_exprs (struct ada_catchpoint *c) s = cond_string; TRY { - exp = std::move (parse_exp_1 (&s, bl->address, - block_for_pc (bl->address), - 0)); + exp = parse_exp_1 (&s, bl->address, + block_for_pc (bl->address), + 0); } CATCH (e, RETURN_MASK_ERROR) { diff --git a/gdb/ax-gdb.c b/gdb/ax-gdb.c index cd97585..49108de 100644 --- a/gdb/ax-gdb.c +++ b/gdb/ax-gdb.c @@ -2555,8 +2555,8 @@ agent_eval_command_one (const char *exp, int eval, CORE_ADDR pc) arg = exp; if (!eval && strcmp (arg, "$_ret") == 0) { - agent = std::move (gen_trace_for_return_address (pc, get_current_arch (), - trace_string)); + agent = gen_trace_for_return_address (pc, get_current_arch (), + trace_string); } else { @@ -2565,10 +2565,10 @@ agent_eval_command_one (const char *exp, int eval, CORE_ADDR pc) if (eval) { gdb_assert (trace_string == 0); - agent = std::move (gen_eval_for_expr (pc, expr.get ())); + agent = gen_eval_for_expr (pc, expr.get ()); } else - agent = std::move (gen_trace_for_expr (pc, expr.get (), trace_string)); + agent = gen_trace_for_expr (pc, expr.get (), trace_string); } ax_reqs (agent.get ()); diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 67b610c..e2fcc08 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -2268,7 +2268,7 @@ parse_cond_to_aexpr (CORE_ADDR scope, struct expression *cond) that may show up. */ TRY { - aexpr = std::move (gen_eval_for_expr (scope, cond)); + aexpr = gen_eval_for_expr (scope, cond); } CATCH (ex, RETURN_MASK_ERROR) @@ -2452,9 +2452,9 @@ parse_cmd_to_aexpr (CORE_ADDR scope, char *cmd) that may show up. */ TRY { - aexpr = std::move (gen_printf (scope, gdbarch, 0, 0, - format_start, format_end - format_start, - fpieces, nargs, argvec)); + aexpr = gen_printf (scope, gdbarch, 0, 0, + format_start, format_end - format_start, + fpieces, nargs, argvec); } CATCH (ex, RETURN_MASK_ERROR) { diff --git a/gdb/dtrace-probe.c b/gdb/dtrace-probe.c index 38654a4..29c2d28 100644 --- a/gdb/dtrace-probe.c +++ b/gdb/dtrace-probe.c @@ -430,8 +430,7 @@ dtrace_process_dof_probe (struct objfile *objfile, TRY { - expr = std::move (parse_expression_with_language (arg.type_str, - language_c)); + expr = parse_expression_with_language (arg.type_str, language_c); } CATCH (ex, RETURN_MASK_ERROR) { diff --git a/gdb/parse.c b/gdb/parse.c index afafc35..323de77 100644 --- a/gdb/parse.c +++ b/gdb/parse.c @@ -1309,7 +1309,7 @@ parse_expression_for_completion (const char *string, char **name, TRY { parse_completion = 1; - exp = std::move (parse_exp_in_context (&string, 0, 0, 0, 0, &subexp)); + exp = parse_exp_in_context (&string, 0, 0, 0, 0, &subexp); } CATCH (except, RETURN_MASK_ERROR) { |