[llvm] [CVP] Infer nneg on existing zext (PR #72052)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 13 03:26:30 PST 2023


================
@@ -1032,6 +1033,24 @@ static bool processSExt(SExtInst *SDI, LazyValueInfo *LVI) {
   return true;
 }
 
+static bool processZExt(ZExtInst *SDI, LazyValueInfo *LVI) {
----------------
nikic wrote:

```suggestion
static bool processZExt(ZExtInst *ZExt, LazyValueInfo *LVI) {
```
Or something? Not sure what SDI is supposed to stand for here.

https://github.com/llvm/llvm-project/pull/72052


More information about the llvm-commits mailing list