Skip to content

Commit

Permalink
add field offset in pp
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmuth committed Feb 12, 2024
1 parent fb49a90 commit f49bcb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FrontEnd/pp.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def DecorateNode(node_name, node):
out += ["<span class=value title='",
str(node.x_value), "'>", CircledLetterEntity("V"), "</span>"]
if cwast.NF.FIELD_ANNOTATED in node.FLAGS:
out += [CircledLetterEntity("F")]
out += ["<span class=value title='", str(node.x_field.x_offset), "'>",CircledLetterEntity("F"), "</span>"]
if cwast.NF.CONTROL_FLOW in node.FLAGS:
out += [CircledLetterEntity("C")]
if problems:
Expand Down

0 comments on commit f49bcb3

Please sign in to comment.