From ccb64b117f3dbda024195c346449ef5e18b87f36 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 16 Jun 2005 15:53:29 +0000 Subject: [PATCH] Store vtables in the data segment to avoid text relocations. --- dlls/msvcrt/cpp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dlls/msvcrt/cpp.c b/dlls/msvcrt/cpp.c index a5e657f2ab..387e192d78 100644 --- a/dlls/msvcrt/cpp.c +++ b/dlls/msvcrt/cpp.c @@ -631,12 +631,13 @@ void * __stdcall MSVCRT_type_info_vector_dtor(type_info * _this, unsigned int fl /* vtables */ #define __ASM_VTABLE(name,funcs) \ - __asm__(".align 4\n" \ + __asm__(".data\n" \ + "\t.align 4\n" \ "\t.long " __ASM_NAME(#name "_rtti") "\n" \ "\t.globl " __ASM_NAME("MSVCRT_" #name "_vtable") "\n" \ __ASM_NAME("MSVCRT_" #name "_vtable") ":\n" \ "\t.long " THISCALL_NAME(MSVCRT_ ## name ## _vector_dtor) "\n" \ - funcs); + funcs "\n\t.text"); #define __ASM_EXCEPTION_VTABLE(name) \ __ASM_VTABLE(name, "\t.long " THISCALL_NAME(MSVCRT_what_exception) );