[PATCH] D146329: [Clang] Fix defaulted equality operator so that it does not attempt to compare unnamed bit-fields

Erich Keane via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Apr 4 06:35:01 PDT 2023


erichkeane added a comment.

In D146329#4242215 <https://reviews.llvm.org/D146329#4242215>, @shafik wrote:

> In D146329#4207522 <https://reviews.llvm.org/D146329#4207522>, @royjacobson wrote:
>
>> In D146329#4203174 <https://reviews.llvm.org/D146329#4203174>, @shafik wrote:
>>
>>> I would have loved to test the case from https://github.com/llvm/llvm-project/issues/61335 directly but I think in order to do it nicely I need `__builtin_memset` to be usable in a constant expression context. I will add this to my todo list. I am open to other alternatives for testing this.
>>
>> I managed to generate relatively readable LLVM IR for this: https://godbolt.org/z/z1YzoEcr3 (the generated equality operators are obviously not correct yet), I think matching against that is testing the issue pretty well.
>>
>> (The trick to making it readable was turning on optimization, though. Not sure if we usually do that)
>
> I think in general we can't rely on optimizations in test like this but wdyt @erichkeane

We should not have opt enabled in our lit tests, thats correct.  However, the non-optimized version of that godbolt link has reasonably readable IR that we can test.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D146329/new/

https://reviews.llvm.org/D146329



More information about the cfe-commits mailing list