diff options
author | Tim Wiederhake <tim.wiederhake@intel.com> | 2017-05-30 12:47:37 +0200 |
---|---|---|
committer | Tim Wiederhake <tim.wiederhake@intel.com> | 2017-05-30 12:49:25 +0200 |
commit | eb8f2b9c44619eecdb3b77da01da910fcf05abed (patch) | |
tree | 0c0e950c3b6303287ff741bc6be06bb95fe27207 /gdb/btrace.h | |
parent | 42bfe59e3a3fef26be6809168756f40740fac1d0 (diff) | |
download | fsf-binutils-gdb-eb8f2b9c44619eecdb3b77da01da910fcf05abed.zip fsf-binutils-gdb-eb8f2b9c44619eecdb3b77da01da910fcf05abed.tar.gz fsf-binutils-gdb-eb8f2b9c44619eecdb3b77da01da910fcf05abed.tar.bz2 |
btrace: Remove struct btrace_function::flow.
This used to hold a pair of pointers to the previous and next function segment
in execution flow order. It is no longer necessary as the previous and next
function segments now are simply the previous and next elements in the vector
of function segments.
Diffstat (limited to 'gdb/btrace.h')
-rw-r--r-- | gdb/btrace.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/btrace.h b/gdb/btrace.h index 8323887..cd3f346 100644 --- a/gdb/btrace.h +++ b/gdb/btrace.h @@ -151,9 +151,6 @@ struct btrace_function two segments: one before the call and another after the return. */ struct btrace_func_link segment; - /* The previous and next function in control flow order. */ - struct btrace_func_link flow; - /* The function segment number of the directly preceding function segment in a (fake) call stack. Will be zero if there is no such function segment in the record. */ |