[PATCH] D106332: [AArch64][GlobalISel] Select llvm.aarch64.neon.st2 intrinsics

Craig Topper via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 21 10:26:57 PDT 2021


craig.topper added inline comments.


================
Comment at: llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp:5082
+      Opc = AArch64::ST2Twov2d;
+    else if (Ty == S64 | Ty == P0)
+      Opc = AArch64::ST1Twov1d;
----------------
I suspect you meant `||` here. I'm getting a warning from gcc "warning: suggest parentheses around comparison in operand of ‘|’ [-Wparentheses]"


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D106332



More information about the llvm-commits mailing list