================
@@ -9195,7 +9195,7 @@ static bool checkOpenMPIterationSpace(
         SemaRef.Diag(CollapseLoopCountExpr->getExprLoc(),
                      diag::note_omp_collapse_ordered_expr)
             << 0 << CollapseLoopCountExpr->getSourceRange();
-      else
+      else if (OrderedLoopCountExpr)
----------------
Fznamznon wrote:

The problem with this approach is that both `OrderedLoopCountExpr` and 
`CollapseLoopCountExpr` will be dereferenced on lines 9192 and 9193 if they're 
both are `nullptr`s.

https://github.com/llvm/llvm-project/pull/110243
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to