Skip to content

Commit

Permalink
Doxygen Syms Gen Ignores Switch Jumptables (#510)
Browse files Browse the repository at this point in the history
* ignore switch jump tables for doxygen sym generator
  • Loading branch information
coco875 authored Dec 24, 2023
1 parent dffedc1 commit 4452b40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 376 deletions.
3 changes: 3 additions & 0 deletions tools/doxygen_symbol_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ def process_map_file(map_file_path):

function_name = tokens[-1]

if function_name.startswith("L8"): # Ignore local labels
continue

# Format the information into the Doxygen style
result += f"[{function_name}](@ref {function_name}) | {address}\n"

Expand Down
Loading

0 comments on commit 4452b40

Please sign in to comment.