aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/coccinelle/index-compatibility.cocci12
1 files changed, 8 insertions, 4 deletions
diff --git a/contrib/coccinelle/index-compatibility.cocci b/contrib/coccinelle/index-compatibility.cocci
index 4c1b890c3e..8520f03128 100644
--- a/contrib/coccinelle/index-compatibility.cocci
+++ b/contrib/coccinelle/index-compatibility.cocci
@@ -1,22 +1,26 @@
// the_index.* variables
@@
+identifier AC = active_cache;
+identifier ACC = active_cache_changed;
+identifier ACT = active_cache_tree;
@@
(
-- active_cache
+- AC
+ the_index.cache
|
-- active_cache_changed
+- ACC
+ the_index.cache_changed
|
-- active_cache_tree
+- ACT
+ the_index.cache_tree
)
@@
+identifier AN = active_nr;
identifier f != prepare_to_commit;
@@
f(...) {<...
-- active_nr
+- AN
+ the_index.cache_nr
...>}