mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-26 21:20:29 +00:00
attempt to appease msvc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113198 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e53ee3b112
commit
32c685cb67
@ -1637,6 +1637,9 @@ void AsmMatcherEmitter::run(raw_ostream &OS) {
|
||||
OS << " bool operator()(StringRef LHS, const MatchEntry &RHS) {\n";
|
||||
OS << " return LHS < StringRef(RHS.Mnemonic);\n";
|
||||
OS << " }\n";
|
||||
OS << " bool operator()(const MatchEntry &LHS, const MatchEntry &RHS) {\n";
|
||||
OS << " return StringRef(LHS.Mnemonic) < StringRef(RHS.Mnemonic);\n";
|
||||
OS << " }\n";
|
||||
OS << " };\n";
|
||||
|
||||
OS << "} // end anonymous namespace.\n\n";
|
||||
|
Loading…
Reference in New Issue
Block a user