Skip to content

Commit

Permalink
Black
Browse files Browse the repository at this point in the history
  • Loading branch information
simonlindholm committed Feb 9, 2025
1 parent 2614669 commit 4f1215f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -1810,7 +1810,9 @@ def is_end_of_function(self, mnemonic: str, args: str) -> bool:
ARM32_JUMP_TABLE_ENTRY_PATTERN = r"(?:(\w+):\s+([0-9a-f]+)\s+)?([\w\.]+)\s+([\w,\ ]+)"

# Example: "ldr r4, [pc, #56] ; (4c <AddCoins+0x4c>)"
ARM32_LOAD_POOL_PATTERN = r"(ldr\s+r([0-9]|1[0-3]),\s+\[pc,.*[;@]\s*)(\([a-fA-F0-9]+.*\))"
ARM32_LOAD_POOL_PATTERN = (
r"(ldr\s+r([0-9]|1[0-3]),\s+\[pc,.*[;@]\s*)(\([a-fA-F0-9]+.*\))"
)


class AsmProcessorARM32(AsmProcessor):
Expand Down

0 comments on commit 4f1215f

Please sign in to comment.