You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/analyses/pthreadSignals.ml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -93,9 +93,9 @@ struct
93
93
(matchList.fold_left (funacccond -> can_be_signalled cond ||| acc) Never conds with
94
94
|PossiblySignalled -> add_if_singleton conds
95
95
|NotConcurrently ->
96
-
(M.warn ~category:Deadcode"The condition variable(s) pointed to by %s are never signalled concurrently, succeeding code is live due to spurious wakeups only!"(Basetype.CilExp.show cond); ctx.local)
96
+
(M.warn ~category:Deadcode"The condition variable(s) pointed to by %a are never signalled concurrently, succeeding code is live due to spurious wakeups only!"Basetype.CilExp.pretty cond; ctx.local)
97
97
|Never ->
98
-
(M.warn ~category:Deadcode"The condition variable(s) pointed to by %s are never signalled, succeeding code is live due to spurious wakeups only!"(Basetype.CilExp.show cond); ctx.local)
98
+
(M.warn ~category:Deadcode"The condition variable(s) pointed to by %a are never signalled, succeeding code is live due to spurious wakeups only!"Basetype.CilExp.pretty cond; ctx.local)
0 commit comments