diff options
author | intrigus-lgtm <60750685+intrigus-lgtm@users.noreply.github.com> | 2022-01-11 16:59:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-11 16:59:37 +0100 |
commit | 30666cb81eca8b36b7f95ee569ec3fd85ae616b5 (patch) | |
tree | 28b5777f40db3642836ac8d1b9433f3a4cbbf628 /docs | |
parent | add85f34d1f1b6a0a9850537f908316db73cf6de (diff) | |
download | afl++-30666cb81eca8b36b7f95ee569ec3fd85ae616b5.tar.gz |
Highlight what a basic block is.
Highlight the different parts that characterize what a basic block is. This makes it slightly easier to read/understand IMHO.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/FAQ.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/FAQ.md b/docs/FAQ.md index 3d3dce20..7ca7b178 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -58,10 +58,10 @@ If you find an interesting or important question missing, submit it via A program contains `functions`, `functions` contain the compiled machine code. The compiled machine code in a `function` can be in a single or many `basic - blocks`. A `basic block` is the largest possible number of subsequent machine - code instructions that has exactly one entry point (which can be be entered by - multiple other basic blocks) and runs linearly without branching or jumping to - other addresses (except at the end). + blocks`. A `basic block` is the **largest possible number of subsequent machine + code instructions** that has **exactly one entry point** (which can be be entered by + multiple other basic blocks) and runs linearly **without branching or jumping to + other addresses** (except at the end). ``` function() { @@ -225,4 +225,4 @@ If you find an interesting or important question missing, submit it via package and because of that the AFL++ llvm plugins do not match anymore. Solution: `git pull ; make clean install` of AFL++. -</p></details> \ No newline at end of file +</p></details> |