We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c002d0 commit 134909fCopy full SHA for 134909f
qiling/debugger/qdb/utils.py
@@ -322,7 +322,7 @@ def regdst_eq_pc(op_str):
322
extra = 8 if 'pc' in (r0, r1, r2) else 0
323
324
if imm:
325
- expr = imm[0].split(", ")[0].partition(" ")
+ expr = imm[0].split()
326
# TODO: should support more bit shifting and rotating operation
327
if expr[0] == "lsl": # logical shift left
328
n = _parse_int(expr[-1].strip("#")) * 2
@@ -339,7 +339,7 @@ def regdst_eq_pc(op_str):
339
r0, r1, *imm = line.op_str.strip("[]").split(", ")
340
341
342
343
344
345
0 commit comments