Fix type-o in ExprMapKeyType::operator ==(). The "&&" was missing.

Patch by Frits van Bommel!

llvm-svn: 58175
This commit is contained in:
Bill Wendling 2008-10-26 00:19:56 +00:00
parent f48367b8e9
commit 97f7de8875
1 changed files with 1 additions and 1 deletions

View File

@ -1658,7 +1658,7 @@ struct ExprMapKeyType {
bool operator==(const ExprMapKeyType& that) const {
return this->opcode == that.opcode &&
this->predicate == that.predicate &&
this->operands == that.operands;
this->operands == that.operands &&
this->indices == that.indices;
}
bool operator<(const ExprMapKeyType & that) const {