From 451c185cda360358e527579d708a5bba8c6d4682 Mon Sep 17 00:00:00 2001 From: wolfgang Date: Mon, 29 Nov 2004 23:28:58 +0000 Subject: [PATCH] [project @ 2004-11-29 23:28:58 by wolfgang] Revert part of the previous commit. Something unrelated slipped in :-(. --- ghc/compiler/cmm/CLabel.hs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/ghc/compiler/cmm/CLabel.hs b/ghc/compiler/cmm/CLabel.hs index eae1bfc..8a5f133 100644 --- a/ghc/compiler/cmm/CLabel.hs +++ b/ghc/compiler/cmm/CLabel.hs @@ -87,7 +87,6 @@ module CLabel ( dynamicLinkerLabelInfo, mkPicBaseLabel, - mkDeadStripPreventer, infoLblToEntryLbl, entryLblToInfoLbl, needsCDecl, isAsmTemp, externallyVisibleCLabel, @@ -198,9 +197,6 @@ data CLabel -- as 1b, referring to the previous definition -- of 1: in the assembler source file. - | DeadStripPreventer CLabel - -- label before an info table to prevent excessive dead-stripping on darwin - deriving (Eq, Ord) data IdLabelInfo @@ -406,9 +402,6 @@ dynamicLinkerLabelInfo _ = Nothing mkPicBaseLabel :: CLabel mkPicBaseLabel = PicBaseLabel -mkDeadStripPreventer :: CLabel -> CLabel -mkDeadStripPreventer lbl = DeadStripPreventer lbl - -- ----------------------------------------------------------------------------- -- Converting info labels to entry labels. @@ -626,9 +619,6 @@ pprCLabel (DynamicLinkerLabel info lbl) pprCLabel PicBaseLabel = ptext SLIT("1b") - -pprCLabel (DeadStripPreventer lbl) - = pprCLabel lbl <> ptext SLIT("_dsp") #endif pprCLabel lbl = -- 1.7.10.4