Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSingleAccretion <62474226+SingleAccretion@users.noreply.github.com>2021-06-24 22:34:08 +0300
committerGitHub <noreply@github.com>2021-06-24 22:34:08 +0300
commit9bbf90582fcfb98c8c9fd279e384c7cf630bfad6 (patch)
tree83dc75280a9b1952c2e6af36900d8138d63d0751 /src/coreclr/jit
parent7cb47629a859e24e04431010dcd95d68fa49a035 (diff)
Add args descriptions for VNF_MapStore and VNF_MapSelect (#54108)
Diffstat (limited to 'src/coreclr/jit')
-rw-r--r--src/coreclr/jit/valuenumfuncs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coreclr/jit/valuenumfuncs.h b/src/coreclr/jit/valuenumfuncs.h
index 23364910c1e..aa13273c877 100644
--- a/src/coreclr/jit/valuenumfuncs.h
+++ b/src/coreclr/jit/valuenumfuncs.h
@@ -6,8 +6,8 @@
// <is-shared-static>)
// clang-format off
-ValueNumFuncDef(MapStore, 3, false, false, false)
-ValueNumFuncDef(MapSelect, 2, false, false, false)
+ValueNumFuncDef(MapStore, 3, false, false, false) // Args: 0: map, 1: index (e. g. field handle), 2: value being stored.
+ValueNumFuncDef(MapSelect, 2, false, false, false) // Args: 0: map, 1: key.
ValueNumFuncDef(FieldSeq, 2, false, false, false) // Sequence (VN of null == empty) of (VN's of) field handles.
ValueNumFuncDef(NotAField, 0, false, false, false) // Value number function for FieldSeqStore::NotAField.