summaryrefslogtreecommitdiff
path: root/src/jit/valuenum.cpp
diff options
context:
space:
mode:
authorBrian Sullivan <briansul@microsoft.com>2018-09-13 15:37:03 -0700
committerBrian Sullivan <briansul@microsoft.com>2018-09-13 15:37:03 -0700
commit660242208a3520f785d42dfa76e009933204ddd9 (patch)
tree6f2038db72cb5e824e6a9afd279c6ad199a75681 /src/jit/valuenum.cpp
parenta63d721496f4035fc52e54c24d02288a30c04051 (diff)
downloadcoreclr-660242208a3520f785d42dfa76e009933204ddd9.tar.gz
coreclr-660242208a3520f785d42dfa76e009933204ddd9.tar.bz2
coreclr-660242208a3520f785d42dfa76e009933204ddd9.zip
whitespace fixes
Diffstat (limited to 'src/jit/valuenum.cpp')
-rw-r--r--src/jit/valuenum.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jit/valuenum.cpp b/src/jit/valuenum.cpp
index 667ecae372..bdb13eba91 100644
--- a/src/jit/valuenum.cpp
+++ b/src/jit/valuenum.cpp
@@ -265,7 +265,7 @@ TFp FpRem(TFp dividend, TFp divisor)
// overflowCheck - The operKind returned should have the overflow check property
//
// Return Value:
-// - The VNOperKind to use for this pair of (isUnsigned, overflowCheck)
+// - The VNOperKind to use for this pair of (isUnsigned, overflowCheck)
//
VNOperKind VNGetOperKind(bool isUnsigned, bool overflowCheck)
{
@@ -303,7 +303,7 @@ VNOperKind VNGetOperKind(bool isUnsigned, bool overflowCheck)
// and Unsigned_OverflowCheck,
//
// Return Value:
-// - The VNFunc to use for this pair of (oper, operKind)
+// - The VNFunc to use for this pair of (oper, operKind)
//
// Notes: - An assert will fire when the oper does not support
// the operKInd that is supplied.
@@ -454,7 +454,7 @@ VNFunc GetVNFuncForOper(genTreeOps oper, VNOperKind operKind)
// Return Value:
// - The VNFunc to use for this GenTree node
//
-// Notes: - The gtFlags from the node are used to set operKind
+// Notes: - The gtFlags from the node are used to set operKind
// to one of Normal, Unsigned, OverflowCheck,
// or Unsigned_OverflowCheck. Also see GetVNFuncForOper()
//