Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lldbinit.py
Original file line number Diff line number Diff line change
Expand Up @@ -3784,7 +3784,7 @@ def dump_conditionalaarch64(cpsr):
# x = re.search('([a-z0-9]{2,3})', operands)
# extract each operand - they are comma separated
# cb have two, tb three operands
x = re.findall("[^,\s]+", operands)
x = re.findall("[^,\\s]+", operands)
# if we can't read the operands it's an error
if x is None:
return taken, reason
Expand Down