[Lldb-commits] [lldb] r176049 - Added missing lldb module namespace.
Greg Clayton
gclayton at apple.com
Mon Feb 25 13:20:59 PST 2013
Author: gclayton
Date: Mon Feb 25 15:20:59 2013
New Revision: 176049
URL: http://llvm.org/viewvc/llvm-project?rev=176049&view=rev
Log:
Added missing lldb module namespace.
Modified:
lldb/trunk/examples/python/symbolication.py
Modified: lldb/trunk/examples/python/symbolication.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/python/symbolication.py?rev=176049&r1=176048&r2=176049&view=diff
==============================================================================
--- lldb/trunk/examples/python/symbolication.py (original)
+++ lldb/trunk/examples/python/symbolication.py Mon Feb 25 15:20:59 2013
@@ -423,7 +423,7 @@ class Symbolicator:
process = self.target.process
if process:
state = process.state
- if state > lldb.eStateUnloaded and state < eStateDetached:
+ if state > lldb.eStateUnloaded and state < lldb.eStateDetached:
live_process = True
# If we don't have a live process, we can attempt to find the image
# that a load address belongs to and lazily load its module in the
More information about the lldb-commits
mailing list