[PATCH] D124325: [AArch64][SVE] Support logical operation BIC with DestructiveBinary patterns

Jordan Rupprecht via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 10 21:04:38 PST 2022


rupprecht added inline comments.


================
Comment at: llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp:494
+  case AArch64::DestructiveBinary:
+    DOPRegIsUnique = DstReg != MI.getOperand(SrcIdx).getReg();
   case AArch64::DestructiveBinaryComm:
----------------
Is fall through intended here? I assume you want a `break;`?

```
llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp:495:3: warning: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough]
  case AArch64::DestructiveBinaryComm:
```


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

https://reviews.llvm.org/D124325



More information about the llvm-commits mailing list