summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorBrian Sullivan <briansul@microsoft.com>2017-03-07 18:58:11 -0800
committerBrian Sullivan <briansul@microsoft.com>2017-03-13 12:45:14 -0700
commitc67474bd34847bf5ceff3d49f29eb4b778848748 (patch)
treeca4220191ea1fcc24361c023cfeb4fd55544ae54 /src/tools
parenta7bed220d5455a705452eb0cc7248b941a6ecd99 (diff)
downloadcoreclr-c67474bd34847bf5ceff3d49f29eb4b778848748.tar.gz
coreclr-c67474bd34847bf5ceff3d49f29eb4b778848748.tar.bz2
coreclr-c67474bd34847bf5ceff3d49f29eb4b778848748.zip
Work for IBC profiling with ReadyToRun images
Incremented ReadyToRun version to 2.2 Implemented caching for IsInstrumented using IS_INSTRUMENTED_UNSET Added method Module::InitializeForProfiling() Added full support for method profile counts in ReadyToRun image
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/crossgen/crossgen.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/tools/crossgen/crossgen.cpp b/src/tools/crossgen/crossgen.cpp
index 625789613f..df16e94bed 100644
--- a/src/tools/crossgen/crossgen.cpp
+++ b/src/tools/crossgen/crossgen.cpp
@@ -834,14 +834,6 @@ int _cdecl wmain(int argc, __in_ecount(argc) WCHAR **argv)
exit(FAILURE_RESULT);
}
}
-
-#ifdef FEATURE_READYTORUN_COMPILER
- if (((dwFlags & NGENWORKER_FLAGS_TUNING) != 0) && ((dwFlags & NGENWORKER_FLAGS_READYTORUN) != 0))
- {
- Output(W("The /Tuning switch cannot be used with /ReadyToRun switch.\n"));
- exit(FAILURE_RESULT);
- }
-#endif
// All argument processing has happened by now. The only messages that should appear before here are errors
// related to argument parsing, such as the Usage message. Afterwards, other messages can appear.