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 04:04:15 +0300
committerManu <manu-silicon@users.noreply.github.com>2015-12-02 04:04:15 +0300
commit5aa5673e507d1ab1b74c64a4693f332e3333fc16 (patch)
treec89d278c6445debbadc2e2d31e87dc2edf0bc6c5 /src/Native/Runtime/CommonMacros.h
parent426343789450dbefc0196ad74b5c2760957f1436 (diff)
Uniformization of preprocessor macros for targets
See issue #440. Replaced TARGET_ARM by _TARGET_ARM_.
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 525f46c99..010dc49c8 100644
--- a/src/Native/Runtime/CommonMacros.h
+++ b/src/Native/Runtime/CommonMacros.h
@@ -6,7 +6,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_ARM)
+#elif defined(_TARGET_ARM_)
#else
#error Unsupported architecture
#endif