Go to file
Johnny Chen fbc0d27144 Move the iteration protocol of lldb objects to the auto-generated lldb Python module.
This is so that the objects which support the iteration protocol are immediately obvious
from looking at the lldb.py file.

SBTarget supports two types of iterations: module and breakpoint.  For an SBTarget instance,
you will need to issue either:

    for m in target.module_iter()

or

    for b in target.breakpoint_iter()

For other single iteration protocol objects, just use, for example:

    for thread in process:
        ID = thread.GetThreadID()
        for frame in thread:
            frame.Disassemble()
            ....

llvm-svn: 130442
2011-04-28 21:31:18 +00:00
clang Driver/Darwin/ld: Set the deployment target following the version information in 2011-04-28 21:23:41 +00:00
compiler-rt Make sure we include __sync_synchronize on arm platforms if we need it. 2011-04-21 22:05:05 +00:00
debuginfo-tests Test case for r130373. 2011-04-28 02:23:17 +00:00
libcxx http://llvm.org/bugs/show_bug.cgi?id=9765 2011-04-21 14:29:59 +00:00
lldb Move the iteration protocol of lldb objects to the auto-generated lldb Python module. 2011-04-28 21:31:18 +00:00
llvm Target/X86/MC: Add an option for disabling arith relaxation, for my own testing 2011-04-28 21:23:31 +00:00