Skip to content

Commit

Permalink
Bug 1062709 - Tweak fix_b2g_stack.py's main regexp. r=erahm.
Browse files Browse the repository at this point in the history
  • Loading branch information
nnethercote committed Oct 6, 2014
1 parent f7802c7 commit b04ff36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/fix_b2g_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ def fallback_str():

# Matches lines produced by DMD (via NS_FormatCodeAddress()) after bug 1062709
# landed.
line_re = re.compile("^(.*#\d+: )(.+)\[(.+) \+(0x.+)\](.*)$")
line_re = re.compile("^(.*#\d+: )(.+)\[(.+) \+(0x[0-9A-Fa-f]+)\](.*)$")

def fixSymbols(line, fixer):
# Try parsing it as if it's the new stack frame format.
Expand Down

0 comments on commit b04ff36

Please sign in to comment.