summaryrefslogtreecommitdiff
path: root/src/jit/optcse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/optcse.cpp')
-rw-r--r--src/jit/optcse.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jit/optcse.cpp b/src/jit/optcse.cpp
index 31789328c3..9dc421b3fd 100644
--- a/src/jit/optcse.cpp
+++ b/src/jit/optcse.cpp
@@ -2351,7 +2351,7 @@ public:
// If it has a zero-offset field seq, copy annotation to the ref
if (hasZeroMapAnnotation)
{
- m_pCompiler->GetZeroOffsetFieldMap()->Set(ref, fldSeq);
+ m_pCompiler->fgAddFieldSeqForZeroOffset(ref, fldSeq);
}
/* Create a comma node for the CSE assignment */
@@ -2392,7 +2392,7 @@ public:
// If it has a zero-offset field seq, copy annotation.
if (hasZeroMapAnnotation)
{
- m_pCompiler->GetZeroOffsetFieldMap()->Set(cse, fldSeq);
+ m_pCompiler->fgAddFieldSeqForZeroOffset(cse, fldSeq);
}
assert(m_pCompiler->fgRemoveRestOfBlock == false);