[PATCH] D94773: [SVE] Fix unused variable.
Stephan Herhut via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 15 06:09:43 PST 2021
herhut created this revision.
Herald added subscribers: NickHung, psnobl, hiraditya, tschuett.
Herald added a reviewer: efriedma.
herhut requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Introduced by [SVE] Restrict the usage of REINTERPRET_CAST.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D94773
Files:
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
Index: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
===================================================================
--- llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+++ llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
@@ -17173,6 +17173,7 @@
SDLoc DL(Op);
EVT InVT = Op.getValueType();
const TargetLowering &TLI = DAG.getTargetLoweringInfo();
+ (void)TLI;
assert(VT.isScalableVector() && TLI.isTypeLegal(VT) &&
InVT.isScalableVector() && TLI.isTypeLegal(InVT) &&
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D94773.316926.patch
Type: text/x-patch
Size: 497 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210115/8ba200a6/attachment.bin>
More information about the llvm-commits
mailing list