mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2026-01-04 18:20:09 +01:00
black-conform formatting
This commit is contained in:
@@ -29,7 +29,9 @@ class ParserAArch64(BaseParser):
|
|||||||
decimal_number = pp.Combine(
|
decimal_number = pp.Combine(
|
||||||
pp.Optional(pp.Literal("-")) + pp.Word(pp.nums)
|
pp.Optional(pp.Literal("-")) + pp.Word(pp.nums)
|
||||||
).setResultsName("value")
|
).setResultsName("value")
|
||||||
hex_number = pp.Combine(pp.Optional(pp.Literal("-")) + pp.Literal("0x") + pp.Word(pp.hexnums)).setResultsName("value")
|
hex_number = pp.Combine(
|
||||||
|
pp.Optional(pp.Literal("-")) + pp.Literal("0x") + pp.Word(pp.hexnums)
|
||||||
|
).setResultsName("value")
|
||||||
relocation = pp.Combine(pp.Literal(":") + pp.Word(pp.alphanums + "_") + pp.Literal(":"))
|
relocation = pp.Combine(pp.Literal(":") + pp.Word(pp.alphanums + "_") + pp.Literal(":"))
|
||||||
first = pp.Word(pp.alphas + "_.", exact=1)
|
first = pp.Word(pp.alphas + "_.", exact=1)
|
||||||
rest = pp.Word(pp.alphanums + "_.")
|
rest = pp.Word(pp.alphanums + "_.")
|
||||||
|
|||||||
Reference in New Issue
Block a user