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:
authorEgor Bogatov <egorbo@gmail.com>2021-03-24 01:01:51 +0300
committerGitHub <noreply@github.com>2021-03-24 01:01:51 +0300
commit65814eb894c9862f6b7f20b9636dbfdd58d092d4 (patch)
treef44f33698e7962dbea81c84e1f16b8150c7c56b9 /src/coreclr/jit/fgdiagnostic.cpp
parentd068d958c1fe8b36cfd42f38bf40bcd6f5c34b32 (diff)
JIT: Fold null checks against initialized static readonly fields (#50000)
Co-authored-by: Andy Ayers <andya@microsoft.com> Co-authored-by: Sergey Andreenko <seandree@microsoft.com>
Diffstat (limited to 'src/coreclr/jit/fgdiagnostic.cpp')
-rw-r--r--src/coreclr/jit/fgdiagnostic.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/coreclr/jit/fgdiagnostic.cpp b/src/coreclr/jit/fgdiagnostic.cpp
index 52eed92f2ea..6ad412709ca 100644
--- a/src/coreclr/jit/fgdiagnostic.cpp
+++ b/src/coreclr/jit/fgdiagnostic.cpp
@@ -2608,6 +2608,7 @@ void Compiler::fgDebugCheckDispFlags(GenTree* tree, unsigned dispFlags, unsigned
{
printf("%c", (dispFlags & GTF_IND_INVARIANT) ? '#' : '-');
printf("%c", (dispFlags & GTF_IND_NONFAULTING) ? 'n' : '-');
+ printf("%c", (dispFlags & GTF_IND_NONNULL) ? '@' : '-');
}
GenTree::gtDispFlags(dispFlags, debugFlags);
}