Commit c7d64948 authored by Alexandre Julliard's avatar Alexandre Julliard

Define GET_IP for x86_64.

parent ee7d27a7
...@@ -70,6 +70,8 @@ static RTL_CRITICAL_SECTION vectored_handlers_section = { &critsect_debug, -1, 0 ...@@ -70,6 +70,8 @@ static RTL_CRITICAL_SECTION vectored_handlers_section = { &critsect_debug, -1, 0
# define GET_IP(context) ((LPVOID)(context)->Iar) # define GET_IP(context) ((LPVOID)(context)->Iar)
#elif defined(__ALPHA__) #elif defined(__ALPHA__)
# define GET_IP(context) ((LPVOID)(context)->Fir) # define GET_IP(context) ((LPVOID)(context)->Fir)
#elif defined(__x86_64__)
# define GET_IP(context) ((LPVOID)(context)->Rip)
#else #else
# error You must define GET_IP for this CPU # error You must define GET_IP for this CPU
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment