summaryrefslogtreecommitdiff
path: root/src/jit/gentree.h
diff options
context:
space:
mode:
authorBrian Sullivan <briansul@microsoft.com>2017-10-20 11:36:42 -0700
committerBrian Sullivan <briansul@microsoft.com>2017-10-20 11:36:42 -0700
commitfb789966c8ef538001f2f6c90bc156637e863d74 (patch)
tree15422fb235bddf117aff3cd9f903932ab2f22ed4 /src/jit/gentree.h
parentae991c3a6042256c25d6c82e2714cd41eb14798a (diff)
downloadcoreclr-fb789966c8ef538001f2f6c90bc156637e863d74.tar.gz
coreclr-fb789966c8ef538001f2f6c90bc156637e863d74.tar.bz2
coreclr-fb789966c8ef538001f2f6c90bc156637e863d74.zip
Fix the gtHashValue to properly hash all the bits when we have a 64-bit item
Diffstat (limited to 'src/jit/gentree.h')
-rw-r--r--src/jit/gentree.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/jit/gentree.h b/src/jit/gentree.h
index 6c915ce429..4c194a45a9 100644
--- a/src/jit/gentree.h
+++ b/src/jit/gentree.h
@@ -2734,7 +2734,6 @@ struct GenTreeLngCon : public GenTreeIntConCommon
INT32 HiVal()
{
return (INT32)(gtLconVal >> 32);
- ;
}
GenTreeLngCon(INT64 val) : GenTreeIntConCommon(GT_CNS_NATIVELONG, TYP_LONG)