[PATCH] D106225: [VE] Set getExtendForAtomicOps to ISD::ANY_EXTEND
Kazushi Marukawa via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 19 03:59:01 PDT 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG4ee28b4fecad: [VE] Set getExtendForAtomicOps to ISD::ANY_EXTEND (authored by kaz7).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D106225/new/
https://reviews.llvm.org/D106225
Files:
llvm/lib/Target/VE/VEISelLowering.h
Index: llvm/lib/Target/VE/VEISelLowering.h
===================================================================
--- llvm/lib/Target/VE/VEISelLowering.h
+++ llvm/lib/Target/VE/VEISelLowering.h
@@ -98,6 +98,9 @@
AtomicOrdering Ord) const override;
TargetLoweringBase::AtomicExpansionKind
shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const override;
+ ISD::NodeType getExtendForAtomicOps() const override {
+ return ISD::ANY_EXTEND;
+ }
/// Custom Lower {
SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D106225.359738.patch
Type: text/x-patch
Size: 575 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210719/05e46486/attachment.bin>
More information about the llvm-commits
mailing list