cor3ntin added inline comments.
================ Comment at: clang/lib/Sema/SemaChecking.cpp:13807-13815 + // Don't warn if the comparison involves integral or floating-point types with + // the same canonical types. + QualType LHSCanonical = Constant->getType().getCanonicalType(); + QualType RHSCanonical = Other->getType().getCanonicalType(); + if ((LHSCanonical->isIntegralOrEnumerationType() || + LHSCanonical->isFloatingType()) && + S.Context.hasSameType(LHSCanonical, RHSCanonical)) { ---------------- This is what I had in mind. I haven't tested it though Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D155457/new/ https://reviews.llvm.org/D155457 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits