[AMDGPU] Add True16 register classes.
[llvm-project.git] / lldb / test / API / commands / command / script / import / bar / bar.py
blob8e78b34f92b3b6fbe8e87242785c0b9f00f35837
1 def bar_function(debugger, args, result, dict):
2 global UtilityModule
3 print(UtilityModule.barutil_function("bar told me " + args), file=result)
4 return None
7 def __lldb_init_module(debugger, session_dict):
8 global UtilityModule
9 UtilityModule = __import__("barutil")
10 debugger.HandleCommand("command script add -f bar.bar_function barothercmd")
11 return None