[PATCH] D71389: [ConstantFold][SVE] Fix constant folding for bitcast.
Sander de Smalen via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 12 05:19:33 PST 2019
sdesmalen added inline comments.
================
Comment at: llvm/lib/IR/ConstantFold.cpp:52
+ // compile-time.
+ if (DstTy->isScalable())
+ return nullptr;
----------------
Do we want to add support for a special case here for splat operations (like the one in the test)?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D71389/new/
https://reviews.llvm.org/D71389
More information about the llvm-commits
mailing list