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:
authorJan Kotas <jkotas@microsoft.com>2016-05-26 05:30:28 +0300
committerJan Kotas <jkotas@microsoft.com>2016-05-26 19:25:13 +0300
commit4af1c32d50cadc898c50213edbac568ad2b698a2 (patch)
treec592cafa376918dbc0871dd0cad691dc8fd1ff9f /src/Native/Runtime/portable.cpp
parent63c604fb519be2e8fcfbfdda9b8835fdce6647a9 (diff)
Implement PInvoke Unix asm helpers
Diffstat (limited to 'src/Native/Runtime/portable.cpp')
-rw-r--r--src/Native/Runtime/portable.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Native/Runtime/portable.cpp b/src/Native/Runtime/portable.cpp
index d7310ff23..3fb9bf8cf 100644
--- a/src/Native/Runtime/portable.cpp
+++ b/src/Native/Runtime/portable.cpp
@@ -56,7 +56,7 @@ struct alloc_context
int alloc_count;
};
-#if defined(USE_PORTABLE_HELPERS) || !defined(_WIN32)
+#ifdef USE_PORTABLE_HELPERS
//
// PInvoke
//
@@ -69,7 +69,9 @@ COOP_PINVOKE_HELPER(void, RhpPInvokeReturn, (void* pFrame))
{
// TODO: RhpPInvokeReturn
}
+#endif
+#if defined(USE_PORTABLE_HELPERS) || !defined(_WIN32)
//
// Allocations
//