Make it clear that the load_addr property on SBAddress relies on lldb.target,

and so can only be used in the script interpreter.

llvm-svn: 216625
This commit is contained in:
Jim Ingham
2014-08-27 22:05:14 +00:00
parent d352137553
commit 4eb1b271fc

View File

@@ -192,7 +192,7 @@ public:
__swig_getmethods__["load_addr"] = __get_load_addr_property__
__swig_setmethods__["load_addr"] = __set_load_addr_property__
if _newclass: load_addr = property(__get_load_addr_property__, __set_load_addr_property__, doc='''A read/write property that gets/sets the SBAddress using load address. The setter resolves SBAddress using the SBTarget from lldb.target.''')
if _newclass: load_addr = property(__get_load_addr_property__, __set_load_addr_property__, doc='''A read/write property that gets/sets the SBAddress using load address. The setter resolves SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command) and not in Python based commands, or breakpoint commands.''')
%}