summaryrefslogtreecommitdiff
path: root/contrib/coccinelle/hashmap.cocci
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);
  ...>}