Return true if BB1 and BB2 contain the same elements ignoring order.
Declared in <llvm/Support/GenericLoopInfoImpl.h>
template<typename T>
bool
compareVectors(
std::vector<T>& BB1,
std::vector<T>& BB2);
Both vectors are sorted in place before comparison.
True if the sorted vectors are equal.
| Name | Description |
|---|---|
| BB1 | First vector (sorted in place). |
| BB2 | Second vector (sorted in place). |