[PATCH] D106332: [AArch64][GlobalISel] Select llvm.aarch64.neon.st2 intrinsics
Jessica Paquette via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 21 14:56:38 PDT 2021
paquette 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;
----------------
craig.topper wrote:
> I suspect you meant `||` here. I'm getting a warning from gcc "warning: suggest parentheses around comparison in operand of ‘|’ [-Wparentheses]"
Oh, yes, you're right. Will fix shortly.
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