Enable field EndAddress only for AMD64 in PAL of RUNTIME_FUNCTION (#8305)
authorSaeHie Park <saehie.park@gmail.com>
Fri, 25 Nov 2016 09:34:25 +0000 (18:34 +0900)
committerJan Vorlicek <janvorli@microsoft.com>
Fri, 25 Nov 2016 09:34:25 +0000 (10:34 +0100)
src/pal/inc/pal.h

index 357605783f24e21b3cbe792af99d7ba766e64526..5859b9d5e6c078adc3c98c925808da29f5eb0693 100644 (file)
@@ -4709,7 +4709,9 @@ enum {
 //
 typedef struct _RUNTIME_FUNCTION {
     DWORD BeginAddress;
+#ifdef _AMD64_
     DWORD EndAddress;
+#endif
     DWORD UnwindData;
 } RUNTIME_FUNCTION, *PRUNTIME_FUNCTION;