[llvm] [LLVM][DAGCombine] Remove combiner-vector-fcopysign-extend-round. (PR #129878)
Paul Walker via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 5 04:23:27 PST 2025
================
@@ -18011,7 +18007,8 @@ static inline bool CanCombineFCOPYSIGN_EXTEND_ROUND(EVT XTy, EVT YTy) {
if (YTy == MVT::f128)
return false;
- return !YTy.isVector() || EnableVectorFCopySignExtendRound;
+ // Avoid mismatched vector operand types, for better instruction selection.
----------------
paulwalker-arm wrote:
This was the original comment that I've pulled from https://reviews.llvm.org/D128642.
https://github.com/llvm/llvm-project/pull/129878
More information about the llvm-commits
mailing list