From: Thorkil Naur Date: Fri, 21 Nov 2008 16:01:49 +0000 (+0000) Subject: Fix symbol macro names in Linker.c X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=d9c526cdbba649e97c73a5bc4367a272b53c2986 Fix symbol macro names in Linker.c --- 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