diff options
| -rw-r--r-- | lldb/examples/python/x86_64_target_definition.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/examples/python/x86_64_target_definition.py b/lldb/examples/python/x86_64_target_definition.py index 741e4ef7b9f..3f7f60dec9b 100644 --- a/lldb/examples/python/x86_64_target_definition.py +++ b/lldb/examples/python/x86_64_target_definition.py @@ -744,7 +744,7 @@ def get_target_definition(): # info if 'slice' not in reg_info and 'composite' not in reg_info: reg_info['offset'] = offset - offset += reg_info['bitsize'] / 8 + offset += reg_info['bitsize'] // 8 # Set the GCC/DWARF register number for this register if it has one reg_num = get_reg_num(name_to_gcc_dwarf_regnum, reg_name) |

