summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2011-01-31 21:15:39 +0000
committerDevang Patel <dpatel@apple.com>2011-01-31 21:15:39 +0000
commite3373b02275d5718a6937db130c7111df275af17 (patch)
tree149acf6fe5d02921ba568ae826420a21142c459d
parentf6fbd84c56ce45ca7657a9b1098569ab380cd4e1 (diff)
downloadllvm-e3373b02275d5718a6937db130c7111df275af17.tar.gz
llvm-e3373b02275d5718a6937db130c7111df275af17.tar.bz2
llvm-e3373b02275d5718a6937db130c7111df275af17.tar.xz
Focus on arguments for now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124604 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/CollectDebugInfoUsingLLDB.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/CollectDebugInfoUsingLLDB.py b/utils/CollectDebugInfoUsingLLDB.py
index 6987b0f1bc..cc40450218 100755
--- a/utils/CollectDebugInfoUsingLLDB.py
+++ b/utils/CollectDebugInfoUsingLLDB.py
@@ -172,8 +172,8 @@ if target.IsValid():
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()