summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authordanmosemsft <danmose@microsoft.com>2017-02-12 15:32:54 -0800
committerdanmosemsft <danmose@microsoft.com>2017-02-12 16:58:50 -0800
commit206b6a7efbc2e947eff900f448b86573b77ae392 (patch)
tree1047a9631b0eba294a37571bc4384309308220f1 /src/tools
parent764b57ba3b7494a8391f32fea688c46247dc9336 (diff)
downloadcoreclr-206b6a7efbc2e947eff900f448b86573b77ae392.tar.gz
coreclr-206b6a7efbc2e947eff900f448b86573b77ae392.tar.bz2
coreclr-206b6a7efbc2e947eff900f448b86573b77ae392.zip
Remove remainder of FEATURE_CORECLR (tool missed some files, also comments)
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/crossgen/crossgen.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/crossgen/crossgen.cpp b/src/tools/crossgen/crossgen.cpp
index 285714c777..625789613f 100644
--- a/src/tools/crossgen/crossgen.cpp
+++ b/src/tools/crossgen/crossgen.cpp
@@ -147,7 +147,7 @@ void PrintUsageHelper()
#if !defined(FEATURE_MERGE_JIT_AND_ENGINE)
W(" /JITPath <path>\n")
W(" - Specifies the absolute file path to JIT compiler to be used.\n")
-#endif // defined(FEATURE_CORECLR) && !defined(FEATURE_MERGE_JIT_AND_ENGINE)
+#endif // !defined(FEATURE_MERGE_JIT_AND_ENGINE)
#ifdef FEATURE_READYTORUN_COMPILER
W(" /ReadyToRun - Generate images resilient to the runtime and\n")
W(" dependency versions\n")
@@ -443,7 +443,7 @@ int _cdecl wmain(int argc, __in_ecount(argc) WCHAR **argv)
#if !defined(FEATURE_MERGE_JIT_AND_ENGINE)
LPCWSTR pwszCLRJITPath = nullptr;
-#endif // defined(FEATURE_CORECLR) && !defined(FEATURE_MERGE_JIT_AND_ENGINE)
+#endif // !defined(FEATURE_MERGE_JIT_AND_ENGINE)
LPCWSTR pwzDiasymreaderPath = nullptr;
@@ -794,7 +794,7 @@ int _cdecl wmain(int argc, __in_ecount(argc) WCHAR **argv)
Output(W("The /JITPath switch can not be used with the /CreatePDB switch.\n"));
exit(FAILURE_RESULT);
}
-#endif // defined(FEATURE_CORECLR) && !defined(FEATURE_MERGE_JIT_AND_ENGINE)
+#endif // !defined(FEATURE_MERGE_JIT_AND_ENGINE)
#if !defined(NO_NGENPDB)
if (pwzDiasymreaderPath != nullptr && !fCreatePDB)
@@ -802,7 +802,7 @@ int _cdecl wmain(int argc, __in_ecount(argc) WCHAR **argv)
Output(W("The /DiasymreaderPath switch can only be used with the /CreatePDB switch.\n"));
exit(FAILURE_RESULT);
}
-#endif // defined(FEATURE_CORECLR) && !defined(NO_NGENPDB)
+#endif // !defined(NO_NGENPDB)
if ((pwzTrustedPlatformAssemblies != nullptr) && (pwzPlatformAssembliesPaths != nullptr))
{
@@ -949,7 +949,7 @@ int _cdecl wmain(int argc, __in_ecount(argc) WCHAR **argv)
,
NULL, // ICorSvcLogger
pwszCLRJITPath
-#endif // defined(FEATURE_CORECLR) && !defined(FEATURE_MERGE_JIT_AND_ENGINE)
+#endif // !defined(FEATURE_MERGE_JIT_AND_ENGINE)
);
}