summaryrefslogtreecommitdiff
path: root/common.h
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2024-02-04 19:51:35 +0300
committerOxore <oxore@protonmail.com>2024-02-04 19:51:35 +0300
commit9fd2eba95beb6c9ce6fb26e1442aa2f68aac9b1f (patch)
tree9d351968b9757ccca48212fc2687d6df996d4fa2 /common.h
parent853bda8e4c9210062a1b793f3499270c9e4cf532 (diff)
Impl deep graph walk and distinct jump following option
This commit changes the default behavior which technically breaks backwards compatibility. It would be a concern if somebody else besides me is using this tool, but I doubt it would be the case, LOL.
Diffstat (limited to 'common.h')
-rw-r--r--common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/common.h b/common.h
index dddde52..76fc956 100644
--- a/common.h
+++ b/common.h
@@ -25,6 +25,8 @@ struct Settings {
bool xrefs_to{};
bool xrefs_from{};
bool imm_hex{};
+ bool follow_jumps{};
+ bool walk{};
BFDTarget bfd{};
const char *indent{"\t"};
};