diff --git a/bolt/test/link_fdata.py b/bolt/test/link_fdata.py index bcf9a777922d..b6358fae1b8d 100755 --- a/bolt/test/link_fdata.py +++ b/bolt/test/link_fdata.py @@ -33,7 +33,7 @@ prefix_pat = re.compile(f"^# {args.prefix}: (.*)") # # # -fdata_pat = re.compile(r"([01].*) (?P\d+) (?P\d+)") +fdata_pat = re.compile(r"([01].*) (?P\d+) (?P\d+)") # Pre-aggregated profile: # {T|B|F|f} [:] [:] [] @@ -61,7 +61,7 @@ with open(args.input, "r") as f: preagg_match = preagg_pat.match(profile_line) nolbr_match = nolbr_pat.match(profile_line) if fdata_match: - src_dst, execnt, mispred = fdata_match.groups() + src_dst, mispred, execnt = fdata_match.groups() # Split by whitespaces not preceded by a backslash (negative lookbehind) chunks = re.split(r"(?