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:48:57 +0300
committerManu <manu-silicon@users.noreply.github.com>2015-12-02 03:48:57 +0300
commitb316dc04914be23108291bac36837ccc930dd9d5 (patch)
tree43af684e5e3e16e6686d6d5e18ec1021befd59bb /src/Native/Runtime/StackFrameIterator.h
parentbce7bf46ef9b18509e4ca1a49d875eaa2c9b7b53 (diff)
Uniformization of preprocessor macros for targets
See issue #440. Replaced TARGET_AMD64 by _TARGET_AMD64_.
Diffstat (limited to 'src/Native/Runtime/StackFrameIterator.h')
-rw-r--r--src/Native/Runtime/StackFrameIterator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Native/Runtime/StackFrameIterator.h b/src/Native/Runtime/StackFrameIterator.h
index b0efcae13..7f021d6bf 100644
--- a/src/Native/Runtime/StackFrameIterator.h
+++ b/src/Native/Runtime/StackFrameIterator.h
@@ -146,7 +146,7 @@ private:
PTR_UIntNative pRdi;
PTR_UIntNative pRsi;
PTR_UIntNative pRbx;
-#ifdef TARGET_AMD64
+#ifdef _TARGET_AMD64_
PTR_UIntNative pR12;
PTR_UIntNative pR13;
PTR_UIntNative pR14;