From: Sergio Durigan Junior Date: Wed, 22 Aug 2012 21:31:17 +0000 (+0000) Subject: 2012-08-22 Sergio Durigan Junior X-Git-Tag: sid-snapshot-20120901~98 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c5d9b215bd704efc2b2a3b7dfaf5c79347aae4ef;p=external%2Fbinutils.git 2012-08-22 Sergio Durigan Junior * remote-sim.c (_initialize_remote_sim): Pass NULL argument to `register_inferior_data_with_cleanup', fixing regression on PowerPC64. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cb69076..78c2923 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-08-22 Sergio Durigan Junior + + * remote-sim.c (_initialize_remote_sim): Pass NULL argument to + `register_inferior_data_with_cleanup', fixing regression on PowerPC64. + 2012-08-22 Khoo Yit Phang Enable readline in Python in a GDB-specific way and block the diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index 87910d9..d87f668 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -1322,5 +1322,5 @@ _initialize_remote_sim (void) set_cmd_completer (c, sim_command_completer); sim_inferior_data_key - = register_inferior_data_with_cleanup (sim_inferior_data_cleanup); + = register_inferior_data_with_cleanup (NULL, sim_inferior_data_cleanup); }