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/Native/Runtime/CommonMacros.h
parentfff5ef5bd71d394af8c1c9013dc79fb1e5be81a1 (diff)
Uniformization of preprocessor macros for targets
See issue #440. Replaced TARGET_X86 by _TARGET_X86_.
Diffstat (limited to 'src/Native/Runtime/CommonMacros.h')
-rw-r--r--src/Native/Runtime/CommonMacros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Native/Runtime/CommonMacros.h b/src/Native/Runtime/CommonMacros.h
index 4bbc5cc68..525f46c99 100644
--- a/src/Native/Runtime/CommonMacros.h
+++ b/src/Native/Runtime/CommonMacros.h
@@ -5,7 +5,7 @@
// Some of our header files are shared with the binder, which needs the TARGET_* macros defined
#if defined(_TARGET_AMD64_)
-#elif defined(TARGET_X86)
+#elif defined(_TARGET_X86_)
#elif defined(TARGET_ARM)
#else
#error Unsupported architecture