@@ -631,7 +631,7 @@ module MakeImpl<LocationSig Location, InputSig<Location> Lang> {
631631
632632 private newtype TSummaryCtx =
633633 TSummaryCtxNone ( ) or
634- TSummaryCtxSome ( ParamNd p , Typ t , Ap ap , TypOption stored , Boolean mustReturn ) {
634+ TSummaryCtxSome ( ParamNd p , Typ t , Ap ap , TypOption stored , boolean mustReturn ) {
635635 fwdFlowInFlowThrough ( p , _, t , ap , stored , mustReturn )
636636 } or
637637 TSummaryCtxSource ( Boolean mustEscape )
@@ -1019,9 +1019,9 @@ module MakeImpl<LocationSig Location, InputSig<Location> Lang> {
10191019 private predicate fwdFlowInFlowThrough (
10201020 ParamNd p , CcCall innercc , Typ t , Ap ap , TypOption stored , boolean mustReturn
10211021 ) {
1022- exists ( SummaryCtx outerSummaryCtx |
1023- FwdFlowInThrough:: fwdFlowIn ( _, _, _, p , _, innercc , outerSummaryCtx , t , ap , stored , _) and
1024- outerSummaryCtx .isValidForFlowThrough ( mustReturn )
1022+ exists ( SummaryCtx summaryCtx |
1023+ FwdFlowInThrough:: fwdFlowIn ( _, _, _, p , _, innercc , summaryCtx , t , ap , stored , _) and
1024+ summaryCtx .isValidForFlowThrough ( mustReturn )
10251025 )
10261026 }
10271027
0 commit comments