MaskRay wrote:

> This seems to [break 
> something](https://lab.llvm.org/buildbot/#/builders/121/builds/41631) in 
> LLVM... investigating

I've also noticed a stage-2-build issue. 

```
      llvm::any_of(LHS->users(),
                    [&](auto *U) {
                      return U != I &&
                             !(U->hasOneUser() && *U->users().begin() == I);
                    }) ||
```

```
llvm/lib/Transforms/Scalar/NaryReassociate.cpp:610:32: error: comparison of 
distinct pointer types ('auto *' and 'Instruction *')
  610 |                       return U != I &&
      |                              ~ ^  ~
```

https://github.com/llvm/llvm-project/pull/90500
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to