[llvm] r277290 - Fixed "copy-paste" mistake from revision 255245.
David Blaikie via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 1 09:12:44 PDT 2016
Is this testable?
On Sun, Jul 31, 2016 at 7:49 AM Amjad Aboud via llvm-commits <
llvm-commits at lists.llvm.org> wrote:
> Author: aaboud
> Date: Sun Jul 31 09:41:50 2016
> New Revision: 277290
>
> URL: http://llvm.org/viewvc/llvm-project?rev=277290&view=rev
> Log:
> Fixed "copy-paste" mistake from revision 255245.
>
> Modified:
> llvm/trunk/lib/IR/LLVMContextImpl.h
>
> Modified: llvm/trunk/lib/IR/LLVMContextImpl.h
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/LLVMContextImpl.h?rev=277290&r1=277289&r2=277290&view=diff
>
> ==============================================================================
> --- llvm/trunk/lib/IR/LLVMContextImpl.h (original)
> +++ llvm/trunk/lib/IR/LLVMContextImpl.h Sun Jul 31 09:41:50 2016
> @@ -928,7 +928,7 @@ template <> struct MDNodeKeyImpl<DIMacro
>
> 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);
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160801/fb8f480c/attachment.html>
More information about the llvm-commits
mailing list