diff options
author | Carl Love <cel@us.ibm.com> | 2023-01-18 11:13:17 -0500 |
---|---|---|
committer | Carl Love <cel@us.ibm.com> | 2023-01-18 11:13:17 -0500 |
commit | b986eec55f460a9c77a0c06ec30d7280293f7a8c (patch) | |
tree | 0d78a889928fc6a76904b3689d36f134fe4d17b7 /gdb/infcall.c | |
parent | 15d2b36c5b60795067cec773a66d2627d2bf9266 (diff) | |
download | gdb-b986eec55f460a9c77a0c06ec30d7280293f7a8c.zip gdb-b986eec55f460a9c77a0c06ec30d7280293f7a8c.tar.gz gdb-b986eec55f460a9c77a0c06ec30d7280293f7a8c.tar.bz2 |
Revert "X86: reverse-finish fix"
This reverts commit b22548ddb30bfb167708e82d3bb932461c1b703a.
This patch is being reverted since the patch series is causing regressions.
Diffstat (limited to 'gdb/infcall.c')
-rw-r--r-- | gdb/infcall.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/infcall.c b/gdb/infcall.c index 116605c..e09904f 100644 --- a/gdb/infcall.c +++ b/gdb/infcall.c @@ -625,6 +625,9 @@ run_inferior_call (std::unique_ptr<call_thread_fsm> sm, disable_watchpoints_before_interactive_call_start (); + /* We want to print return value, please... */ + call_thread->control.proceed_to_finish = 1; + try { /* Infcalls run synchronously, in the foreground. */ |