summaryrefslogtreecommitdiff
path: root/src/jit/jit.h
diff options
context:
space:
mode:
authorPat Gavlin <pagavlin@microsoft.com>2016-03-31 13:08:37 -0700
committerPat Gavlin <pagavlin@microsoft.com>2016-04-18 14:07:22 -0700
commit8c0b81e5680acd3fd6b748bc9d7b71665d5769b7 (patch)
tree96d42f984ff3c1085ab99750f7bda0efa07cf7f2 /src/jit/jit.h
parent9762dd09607ee1ff62b3e0b9eb4779ff4abec9e3 (diff)
downloadcoreclr-8c0b81e5680acd3fd6b748bc9d7b71665d5769b7.tar.gz
coreclr-8c0b81e5680acd3fd6b748bc9d7b71665d5769b7.tar.bz2
coreclr-8c0b81e5680acd3fd6b748bc9d7b71665d5769b7.zip
Define the AMD64 unwind codes in their own header.
This matches the CFI unwind codes and allows the JIT to be more precise about its includes.
Diffstat (limited to 'src/jit/jit.h')
-rw-r--r--src/jit/jit.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/jit/jit.h b/src/jit/jit.h
index 66197cddb3..500ccfd790 100644
--- a/src/jit/jit.h
+++ b/src/jit/jit.h
@@ -179,6 +179,11 @@
#error Unsupported or unset target architecture
#endif
+// Include the AMD64 unwind codes when appropriate.
+#if defined(_TARGET_AMD64_)
+#include "win64unwind.h"
+#endif
+
// Macros for defining strongly-typed enums. Use as follows:
//
// DECLARE_TYPED_ENUM(FooEnum,BYTE)