Do not use std::move when assigning an anonymous object to a unique_ptr.
authorJohn Baldwin <jhb@FreeBSD.org>
Thu, 24 Nov 2016 20:01:24 +0000 (12:01 -0800)
committerJohn Baldwin <jhb@FreeBSD.org>
Thu, 24 Nov 2016 20:01:24 +0000 (12:01 -0800)
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.

gdb/ChangeLog
gdb/ada-lang.c
gdb/ax-gdb.c
gdb/breakpoint.c
gdb/dtrace-probe.c
gdb/parse.c

index 9dc2618..bceb862 100644 (file)
@@ -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.
 
index 0647a9b..78c7d6f 100644 (file)
@@ -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)
            {
index cd97585..49108de 100644 (file)
@@ -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 ());
index 67b610c..e2fcc08 100644 (file)
@@ -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)
     {
index 38654a4..29c2d28 100644 (file)
@@ -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)
            {
index afafc35..323de77 100644 (file)
@@ -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)
     {