shafik added inline comments.
================ Comment at: clang/lib/Sema/SemaExpr.cpp:8730 + // result also has that type. + if (LHSTy->isNullPtrType() && Context.hasSameType(LHSTy, RHSTy)) + return ResTy; ---------------- erichkeane wrote: > what does this do with the GNU ternary-thing? Does this cover if one is a pointer with a null pointer value? ================ Comment at: clang/lib/Sema/SemaExpr.cpp:12587 - // Comparison of Objective-C pointers and block pointers against nullptr_t. - // These aren't covered by the composite pointer type rules. - if (!IsOrdered && RHSType->isNullPtrType() && - (LHSType->isObjCObjectPointerType() || LHSType->isBlockPointerType())) { + // C++ [expr.eq]p4: + // Two operands of type std::nullptr_t or one operand of type ---------------- This was in the `if (getLangOpts().CPlusPlus)` block previously, did you mean to move it out? ================ Comment at: clang/lib/Sema/SemaExpr.cpp:12620 + + // Comparison of Objective-C pointers and block pointers against nullptr_t. + // These aren't covered by the composite pointer type rules. ---------------- This was in the `if (getLangOpts().CPlusPlus)` block previously, did you mean to move it out? Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D135099/new/ https://reviews.llvm.org/D135099 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits