Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hashmap.cocci « coccinelle « contrib - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5dbb4557b56b130d1ed518af1ccdff6c112d7a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@@
expression E;
struct hashmap_entry HME;
@@
- HME.hash = E;
+ hashmap_entry_init(&HME, E);

@@
identifier f !~ "^hashmap_entry_init$";
expression E;
struct hashmap_entry *HMEP;
@@
  f(...) {<...
- HMEP->hash = E;
+ hashmap_entry_init(HMEP, E);
  ...>}