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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorgan Brown <morganbr@users.noreply.github.com>2017-12-05 09:45:38 +0300
committerGitHub <noreply@github.com>2017-12-05 09:45:38 +0300
commit3d25db5b1c010346bbc480a20646c80ea413492f (patch)
treee49e79d7ef6cd6861dd54d6db5262dfce216e695 /src/Native/Runtime/MiscHelpers.cpp
parentc900f3d03df888df2271cc7e207cdc645ae94aa2 (diff)
Build runtime and libraries for WebAssembly (#4876)
* Fix issues building the runtime, corelib and type loader for WebAssembly * Fix test infrastructure to allow running with the wasm flavor
Diffstat (limited to 'src/Native/Runtime/MiscHelpers.cpp')
-rw-r--r--src/Native/Runtime/MiscHelpers.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Native/Runtime/MiscHelpers.cpp b/src/Native/Runtime/MiscHelpers.cpp
index 206ca0a03..b2c694c5c 100644
--- a/src/Native/Runtime/MiscHelpers.cpp
+++ b/src/Native/Runtime/MiscHelpers.cpp
@@ -539,9 +539,9 @@ COOP_PINVOKE_HELPER(UInt8 *, RhGetCodeTarget, (UInt8 * pCodeOrg))
#elif _TARGET_ARM64_
UNREFERENCED_PARAMETER(unboxingStub);
PORTABILITY_ASSERT("@TODO: FIXME:ARM64");
-
#else
-#error 'Unsupported Architecture'
+ UNREFERENCED_PARAMETER(unboxingStub);
+ PORTABILITY_ASSERT("RhGetCodeTarget");
#endif
return pCodeOrg;
@@ -597,7 +597,7 @@ COOP_PINVOKE_HELPER(UInt8 *, RhGetJmpStubCodeTarget, (UInt8 * pCodeOrg))
#elif _TARGET_ARM64_
PORTABILITY_ASSERT("@TODO: FIXME:ARM64");
#else
-#error 'Unsupported Architecture'
+ PORTABILITY_ASSERT("RhGetJmpStubCodeTarget");
#endif
}
END_FOREACH_MODULE;