From c958ed15c1a58224966b10a6c778d13aaf537469 Mon Sep 17 00:00:00 2001 From: SaeHie Park Date: Fri, 25 Nov 2016 18:34:25 +0900 Subject: [PATCH] Enable field EndAddress only for AMD64 in PAL of RUNTIME_FUNCTION (#8305) --- src/pal/inc/pal.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pal/inc/pal.h b/src/pal/inc/pal.h index 357605783f..5859b9d5e6 100644 --- a/src/pal/inc/pal.h +++ b/src/pal/inc/pal.h @@ -4709,7 +4709,9 @@ enum { // typedef struct _RUNTIME_FUNCTION { DWORD BeginAddress; +#ifdef _AMD64_ DWORD EndAddress; +#endif DWORD UnwindData; } RUNTIME_FUNCTION, *PRUNTIME_FUNCTION; -- 2.34.1