[llvm-commits] [llvm] r124604 - /llvm/trunk/utils/CollectDebugInfoUsingLLDB.py
Devang Patel
dpatel at apple.com
Mon Jan 31 13:15:39 PST 2011
Author: dpatel
Date: Mon Jan 31 15:15:39 2011
New Revision: 124604
URL: http://llvm.org/viewvc/llvm-project?rev=124604&view=rev
Log:
Focus on arguments for now.
Modified:
llvm/trunk/utils/CollectDebugInfoUsingLLDB.py
Modified: llvm/trunk/utils/CollectDebugInfoUsingLLDB.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/CollectDebugInfoUsingLLDB.py?rev=124604&r1=124603&r2=124604&view=diff
==============================================================================
--- llvm/trunk/utils/CollectDebugInfoUsingLLDB.py (original)
+++ llvm/trunk/utils/CollectDebugInfoUsingLLDB.py Mon Jan 31 15:15:39 2011
@@ -172,8 +172,8 @@
line = frame.GetLineEntry().GetLine()
vars = frame.GetVariables(1,0,0,0)
print_vars ("#Argument ", vars, fname, line, file, frame, target, thread)
- vars = frame.GetVariables(0,1,0,0)
- print_vars ("#Variables ", vars, fname, line, file, frame, target, thread)
+ # vars = frame.GetVariables(0,1,0,0)
+ # print_vars ("#Variables ", vars, fname, line, file, frame, target, thread)
process.Continue()
file.close()
More information about the llvm-commits
mailing list