Fixed "copy-paste" mistake from revision 255245.

llvm-svn: 277290
This commit is contained in:
Amjad Aboud 2016-07-31 14:41:50 +00:00
parent 6e9b16054f
commit 580498de17
1 changed files with 1 additions and 1 deletions

View File

@ -928,7 +928,7 @@ template <> struct MDNodeKeyImpl<DIMacroFile> {
bool isKeyOf(const DIMacroFile *RHS) const {
return MIType == RHS->getMacinfoType() && Line == RHS->getLine() &&
File == RHS->getRawFile() && File == RHS->getRawElements();
File == RHS->getRawFile() && Elements == RHS->getRawElements();
}
unsigned getHashValue() const {
return hash_combine(MIType, Line, File, Elements);