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:
authorManu <manu-silicon@users.noreply.github.com>2015-12-02 03:57:53 +0300
committerManu <manu-silicon@users.noreply.github.com>2015-12-02 04:01:59 +0300
commit426343789450dbefc0196ad74b5c2760957f1436 (patch)
tree2c693f653c7d122a4019b1ef63ccca79e2cc417f /src/JitInterface
parentfff5ef5bd71d394af8c1c9013dc79fb1e5be81a1 (diff)
Uniformization of preprocessor macros for targets
See issue #440. Replaced TARGET_X86 by _TARGET_X86_.
Diffstat (limited to 'src/JitInterface')
-rw-r--r--src/JitInterface/src/CorInfoHelpFunc.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/JitInterface/src/CorInfoHelpFunc.cs b/src/JitInterface/src/CorInfoHelpFunc.cs
index 9329da16b..181a601f2 100644
--- a/src/JitInterface/src/CorInfoHelpFunc.cs
+++ b/src/JitInterface/src/CorInfoHelpFunc.cs
@@ -274,7 +274,7 @@ namespace Internal.JitInterface
// Keep platform-specific helpers at the end so that the ids for the platform neutral helpers stay same accross platforms
//
-#if TARGET_X86 || _HOST_X86_ || REDHAWK // _HOST_X86_ is for altjit
+#if _TARGET_X86_ || _HOST_X86_ || REDHAWK // _HOST_X86_ is for altjit
// NOGC_WRITE_BARRIERS JIT helper calls
// Unchecked versions EDX is required to point into GC heap
CORINFO_HELP_ASSIGN_REF_EAX, // EAX holds GC ptr, do a 'mov [EDX], EAX' and inform GC