forked from OSchip/llvm-project
Fixed "copy-paste" mistake from revision 255245.
llvm-svn: 277290
This commit is contained in:
parent
6e9b16054f
commit
580498de17
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue