From 8c0b81e5680acd3fd6b748bc9d7b71665d5769b7 Mon Sep 17 00:00:00 2001 From: Pat Gavlin Date: Thu, 31 Mar 2016 13:08:37 -0700 Subject: 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. --- src/jit/jit.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/jit/jit.h') 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) -- cgit v1.2.3