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
CheckedRegionFinder seems to stop early after encountering a CallExpr. This is a problem when an unsafe expression appears on the RHS of a binary operator with a CallExpr on the LHS.
Dereferencing the unchecked pointer x should stop the function from being _Checked. Notably, this is the behavior we see if bar is instead defined with return *x + foo();