Skip to content

Commit 38e2359

Browse files
committed
[NFC] Removed unused VFInfo comparison operator
1 parent dd7575b commit 38e2359

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

llvm/include/llvm/Analysis/VectorUtils.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -127,12 +127,6 @@ struct VFInfo {
127127
std::string ScalarName; /// Scalar Function Name.
128128
std::string VectorName; /// Vector Function Name associated to this VFInfo.
129129
VFISAKind ISA; /// Instruction Set Architecture.
130-
131-
// Comparison operator.
132-
bool operator==(const VFInfo &Other) const {
133-
return std::tie(Shape, ScalarName, VectorName, ISA) ==
134-
std::tie(Shape, Other.ScalarName, Other.VectorName, Other.ISA);
135-
}
136130
};
137131

138132
namespace VFABI {

0 commit comments

Comments
 (0)