================ @@ -21067,6 +21067,10 @@ Sema::ActOnOpenMPDependClause(const OMPDependClause::DependDataTy &Data, ExprTy = ATy->getElementType(); else ExprTy = BaseType->getPointeeType(); + // bug 69200 + if (ExprTy.isNull()) { + continue; + } ---------------- jhuber6 wrote:
```suggestion if (ExprTy.isNull()) continue; ``` LLVM style omits braces on a single line block. https://github.com/llvm/llvm-project/pull/77131 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits