1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

[NFC] Removed unused VFInfo comparison operator

This commit is contained in:
David Sherwood 2021-05-18 11:42:48 +01:00
parent ef6c8d6574
commit 5ca2c672fd

View File

@ -127,12 +127,6 @@ struct VFInfo {
std::string ScalarName; /// Scalar Function Name.
std::string VectorName; /// Vector Function Name associated to this VFInfo.
VFISAKind ISA; /// Instruction Set Architecture.
// Comparison operator.
bool operator==(const VFInfo &Other) const {
return std::tie(Shape, ScalarName, VectorName, ISA) ==
std::tie(Shape, Other.ScalarName, Other.VectorName, Other.ISA);
}
};
namespace VFABI {