You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
8 lines
220 B
Python
8 lines
220 B
Python
|
|
import lldb
|
||
|
|
|
||
|
|
def test(debugger, command, result, internal_dict):
|
||
|
|
return int(lldb.SBAddress())
|
||
|
|
|
||
|
|
def __lldb_init_module(debugger, internal_dict):
|
||
|
|
debugger.HandleCommand('command script add -f sbaddress.test test')
|