From bfb041829d38b711d7f5f783b1ed944f01c23a9b Mon Sep 17 00:00:00 2001 From: wolfgang Date: Tue, 17 Jan 2006 01:51:56 +0000 Subject: [PATCH] [project @ 2006-01-17 01:51:56 by wolfgang] Darwin/PPC: Make StgRunIsImplementedInAssembler non-static; gcc has recently acquired a habit of dead-stripping it. MERGE TO STABLE --- ghc/rts/StgCRun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/rts/StgCRun.c b/ghc/rts/StgCRun.c index 54ebfe1..7597ff2 100644 --- a/ghc/rts/StgCRun.c +++ b/ghc/rts/StgCRun.c @@ -591,7 +591,7 @@ StgRun(StgFunPtr f, StgRegTable *basereg) extern StgRegTable * StgRun(StgFunPtr f, StgRegTable *basereg); #ifdef darwin_HOST_OS -static void StgRunIsImplementedInAssembler(void) +void StgRunIsImplementedInAssembler(void) { #if HAVE_SUBSECTIONS_VIA_SYMBOLS // if the toolchain supports deadstripping, we have to -- 1.7.10.4