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/base.ml
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1229,9 +1229,8 @@ struct
1229
1229
|JmpBuf (x, copied, invalid) ->
1230
1230
if copied then
1231
1231
M.warn ~category:(Behavior (UndefinedOther)) "The jump buffer %a contains values that were copied here instead of being set by setjmp. This is Undefined Behavior." d_exp e;
1232
-
(* M.warn ~category:(Behavior (Undefined Other)) "The jump buffer %a was modified by inline assembly. This is may lead to Undefined Behavior." d_exp e; *)
1233
1232
if invalid then
1234
-
M.warn ~category:(Behavior (UndefinedOther)) "The jump target %a may have been altered in an inline assembly block." d_exp e;
1233
+
M.warn ~category:(Behavior (UndefinedOther)) "The jump buffer %a was modified by inline assembly. This is may lead to Undefined Behavior." d_exp e;
0 commit comments