Remove an unused function

llvm-svn: 342694
This commit is contained in:
David Blaikie 2018-09-20 22:48:09 +00:00
parent 6dd646beae
commit 2908b384ed
1 changed files with 0 additions and 11 deletions

View File

@ -24,17 +24,6 @@
using namespace llvm;
namespace llvm {
/// Provide an ostream operator for StringRef.
///
/// For convenience we provide a custom matcher below for IRUnit's and analysis
/// result's getName functions, which most of the time returns a StringRef. The
/// matcher makes use of this operator.
static std::ostream &operator<<(std::ostream &O, StringRef S) {
return O << S.str();
}
}
namespace {
using testing::AnyNumber;
using testing::AtLeast;