projects
/
platform
/
upstream
/
coreclr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e60aad
)
Enable field EndAddress only for AMD64 in PAL of RUNTIME_FUNCTION (#8305)
author
SaeHie Park
<saehie.park@gmail.com>
Fri, 25 Nov 2016 09:34:25 +0000
(18:34 +0900)
committer
Jan Vorlicek
<janvorli@microsoft.com>
Fri, 25 Nov 2016 09:34:25 +0000
(10:34 +0100)
src/pal/inc/pal.h
patch
|
blob
|
history
diff --git
a/src/pal/inc/pal.h
b/src/pal/inc/pal.h
index
3576057
..
5859b9d
100644
(file)
--- 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;