From d9c526cdbba649e97c73a5bc4367a272b53c2986 Mon Sep 17 00:00:00 2001 From: Thorkil Naur Date: Fri, 21 Nov 2008 16:01:49 +0000 Subject: [PATCH] Fix symbol macro names in Linker.c --- rts/Linker.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rts/Linker.c b/rts/Linker.c index 7c1cd40..2119262 100644 --- a/rts/Linker.c +++ b/rts/Linker.c @@ -4674,7 +4674,7 @@ static void machoInitSymbolsWithoutUnderscore() void **p = symbolsWithoutUnderscore; __asm__ volatile(".globl _symbolsWithoutUnderscore\n.data\n_symbolsWithoutUnderscore:"); -#undef Sym +#undef SymI_NeedsProto #define SymI_NeedsProto(x) \ __asm__ volatile(".long " # x); @@ -4682,13 +4682,13 @@ static void machoInitSymbolsWithoutUnderscore() __asm__ volatile(".text"); -#undef Sym +#undef SymI_NeedsProto #define SymI_NeedsProto(x) \ ghciInsertStrHashTable("(GHCi built-in symbols)", symhash, #x, *p++); RTS_MACHO_NOUNDERLINE_SYMBOLS -#undef Sym +#undef SymI_NeedsProto } #endif -- 1.7.10.4