GithubHelp home page GithubHelp logo

Comments (1)

llvmbot avatar llvmbot commented on June 9, 2024

@llvm/issue-subscribers-clang-frontend

Author: Amirreza Ashouri (AMP999)

Clang's `__is_trivially_equality_comparable(T)` builtin assumes that if a type has _any_ defaulted trivial comparison operator, then _all_ its comparison operators will be tantamount-to-trivial. That's a sane assumption... but only if the defaulted operator is actually eligible for the given `T`! If the defaulted operator is `requires`-clause'd away, then we shouldn't consider it relevant to the question of triviality at all. https://godbolt.org/z/3hs4EKPKT ``` template<bool B> struct S { int i; bool operator==(const S&) const requires B = default; bool operator==(const S& rhs) const { return (i % 3) == (rhs.i % 3); } }; static_assert(__is_trivially_equality_comparable(S<true>)); // OK static_assert(not __is_trivially_equality_comparable(S<false>)); // Oops, this line assert-fails ``` This compiler misbehavior causes libc++ to miscompile `std::equal`: https://godbolt.org/z/YPfEG6cv9 ``` S<false> a[] = {1,2,3}; S<false> b[] = {4,5,6}; return std::equal(a, a+3, b, b+3); // should be true, not false ```

from llvm-project.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.