summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kconfiglib.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index 1337811..1000be9 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -2937,6 +2937,10 @@ class Symbol(Item, _HasVisibility):
if self.cached_deps is not None:
return self.cached_deps
+ # TODO: This still recalculates a lot. Should use a recursive
+ # _get_dependent() call to make best use of caching. Make sure to get
+ # it right w.r.t. choices.
+
# Calculate using a set to avoid duplicates in the result
res = set()