Author: Jonas Devlieghere
Date: 2019-11-22T15:43:39-08:00
New Revision: b6ae524cd2d5139748e207d4b60b4a900775d6a7

URL: 
https://github.com/llvm/llvm-project/commit/b6ae524cd2d5139748e207d4b60b4a900775d6a7
DIFF: 
https://github.com/llvm/llvm-project/commit/b6ae524cd2d5139748e207d4b60b4a900775d6a7.diff

LOG: [Examples] Move structured-data unpacking out of the loop. (NFC)

There's no need to repeat this work in the loop.

Added: 
    

Modified: 
    lldb/examples/python/in_call_stack.py

Removed: 
    


################################################################################
diff  --git a/lldb/examples/python/in_call_stack.py 
b/lldb/examples/python/in_call_stack.py
index ba3ca57267fa..0647f2ca3425 100755
--- a/lldb/examples/python/in_call_stack.py
+++ b/lldb/examples/python/in_call_stack.py
@@ -9,10 +9,10 @@ def __lldb_init_module(debugger, internal_dict):
 
 def in_call_stack(frame, bp_loc, arg_dict, _):
   """Only break if the given name is in the current call stack."""
+  name = arg_dict.GetValueForKey('name').GetStringValue(1000)
   thread = frame.GetThread()
   found = False
   for frame in thread.frames:
-    name = arg_dict.GetValueForKey('name').GetStringValue(1000)
     # Check the symbol.
     symbol = frame.GetSymbol()
     if symbol and name in frame.GetSymbol().GetName():


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to