forked from OSchip/llvm-project
[SDAG] Handle VectorReduction in SDNodeFlags::intersectWith
Spotted by Sanjay in https://reviews.llvm.org/D31165 llvm-svn: 298962
This commit is contained in:
parent
6820f391eb
commit
cb69117ee7
|
@ -394,6 +394,7 @@ public:
|
|||
NoInfs &= Flags->NoInfs;
|
||||
NoSignedZeros &= Flags->NoSignedZeros;
|
||||
AllowReciprocal &= Flags->AllowReciprocal;
|
||||
VectorReduction &= Flags->VectorReduction;
|
||||
AllowContract &= Flags->AllowContract;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue