[PATCH] D56387: [DAGCombiner] Enable SimplifyDemandedBits vector support for TRUNCATE (WIP)
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 4 11:28:45 PST 2021
arsenm added inline comments.
================
Comment at: llvm/lib/Target/ARM/ARMISelLowering.cpp:8693-8695
+ if (N->getOpcode() == ISD::ANY_EXTEND)
+ return true;
+ return false;
----------------
return getOpcode() == ANY_EXTEND but I'm guessing this is just a placeholder function anyway
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D56387/new/
https://reviews.llvm.org/D56387
More information about the llvm-commits
mailing list