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 c336625 commit 8160025Copy full SHA for 8160025
lldb/utils/lui/lldbutil.py
@@ -951,7 +951,7 @@ def get_GPRs(frame):
951
from lldbutil import get_GPRs
952
regs = get_GPRs(frame)
953
for reg in regs:
954
- print "%s => %s" % (reg.GetName(), reg.GetValue())
+ print("%s => %s" % (reg.GetName(), reg.GetValue()))
955
...
956
"""
957
return get_registers(frame, "general purpose")
@@ -965,7 +965,7 @@ def get_FPRs(frame):
965
from lldbutil import get_FPRs
966
regs = get_FPRs(frame)
967
968
969
970
971
return get_registers(frame, "floating point")
0 commit comments