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 | btrace: Replace struct btrace_function::up. (diff) | |
download | binutils-gdb-eb8f2b9c44619eecdb3b77da01da910fcf05abed.tar.gz binutils-gdb-eb8f2b9c44619eecdb3b77da01da910fcf05abed.tar.bz2 binutils-gdb-eb8f2b9c44619eecdb3b77da01da910fcf05abed.zip |
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 8323887486b..cd3f3467c9b 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. */ |