* breakpoint.c (build_target_command_list): Change loc->cond_bytecode
	to loc->cmd_bytecode.
+2013-04-25  Hui Zhu  <hui@codesourcery.com>
+
+       * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
+       to loc->cmd_bytecode.
+
 2013-04-24  Doug Evans  <dje@google.com>
 
        * dwarf2read.c (setup_type_unit_groups): Fix comment.
 
            {
              /* Only go as far as the first NULL bytecode is
                 located.  */
-             if (!loc->cond_bytecode)
+             if (loc->cmd_bytecode == NULL)
                return;
 
-             free_agent_expr (loc->cond_bytecode);
-             loc->cond_bytecode = NULL;
+             free_agent_expr (loc->cmd_bytecode);
+             loc->cmd_bytecode = NULL;
            }
        }
     }