*new* check_macros: find macro precedence bugs
[smatch.git] / validation / sm_locking3.c
blob0a87fca8627810d64afa7b5fb52342672fc86a79
1 _spin_trylock(int name);
2 _spin_lock(int name);
3 _spin_unlock(int name);
5 int func (void)
7 int mylock = 1;
9 if (!({frob(); frob(); _spin_trylock(mylock);}))
10 return;
12 frob();
13 _spin_unlock(mylock);
15 if (((_spin_trylock(mylock)?1:0)?1:0))
16 return;
17 frob_somemore();
18 _spin_unlock(mylock);
20 return;
23 * check-name: Smatch locking #3
24 * check-command: smatch --project=kernel sm_locking3.c
26 * check-output-start
27 sm_locking3.c +18 func(13) error: double unlock 'spin_lock:mylock'
28 sm_locking3.c +20 func(15) warn: inconsistent returns spin_lock:mylock: locked (16) unlocked (10,20)
29 * check-output-end