From 6111556816314236f1f7df84b404e6fbc83e739f Mon Sep 17 00:00:00 2001 From: rrt Date: Fri, 14 Apr 2000 15:28:24 +0000 Subject: [PATCH] [project @ 2000-04-14 15:28:24 by rrt] Removed -fcompiling-prelude flag (now removed from compiler) --- ghc/lib/std/PrelAddr.lhs | 2 +- ghc/lib/std/PrelArr.lhs | 2 +- ghc/lib/std/PrelArrExtra.lhs | 2 +- ghc/lib/std/PrelBase.lhs | 2 +- ghc/lib/std/PrelByteArr.lhs | 2 +- ghc/lib/std/PrelConc.lhs | 2 +- ghc/lib/std/PrelDynamic.lhs | 2 +- ghc/lib/std/PrelEnum.lhs | 2 +- ghc/lib/std/PrelErr.lhs | 2 +- ghc/lib/std/PrelException.lhs | 4 ++-- ghc/lib/std/PrelFloat.lhs | 2 +- ghc/lib/std/PrelForeign.lhs | 2 +- ghc/lib/std/PrelHandle.lhs | 2 +- ghc/lib/std/PrelHugs.lhs | 2 +- ghc/lib/std/PrelIO.lhs | 2 +- ghc/lib/std/PrelIOBase.lhs | 4 ++-- ghc/lib/std/PrelList.lhs | 2 +- ghc/lib/std/PrelMaybe.lhs | 2 +- ghc/lib/std/PrelNum.lhs | 2 +- ghc/lib/std/PrelPack.lhs | 2 +- ghc/lib/std/PrelRead.lhs | 2 +- ghc/lib/std/PrelReal.lhs | 2 +- ghc/lib/std/PrelST.lhs | 2 +- ghc/lib/std/PrelShow.lhs | 2 +- ghc/lib/std/PrelStable.lhs | 4 ++-- ghc/lib/std/PrelTup.lhs | 2 +- ghc/lib/std/PrelWeak.lhs | 2 +- ghc/lib/std/Prelude.lhs | 2 +- 28 files changed, 31 insertions(+), 31 deletions(-) diff --git a/ghc/lib/std/PrelAddr.lhs b/ghc/lib/std/PrelAddr.lhs index 8bd90f2..3c9fb0a 100644 --- a/ghc/lib/std/PrelAddr.lhs +++ b/ghc/lib/std/PrelAddr.lhs @@ -5,7 +5,7 @@ \section[PrelAddr]{Module @PrelAddr@} \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelAddr ( Addr(..) diff --git a/ghc/lib/std/PrelArr.lhs b/ghc/lib/std/PrelArr.lhs index 6ee1418..e930bad 100644 --- a/ghc/lib/std/PrelArr.lhs +++ b/ghc/lib/std/PrelArr.lhs @@ -9,7 +9,7 @@ types and operations. For byte-arrays see @PrelByteArr@. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelArr where diff --git a/ghc/lib/std/PrelArrExtra.lhs b/ghc/lib/std/PrelArrExtra.lhs index 69d8fb1..a7769b8 100644 --- a/ghc/lib/std/PrelArrExtra.lhs +++ b/ghc/lib/std/PrelArrExtra.lhs @@ -9,7 +9,7 @@ to compile. So as not to compile the whole of PrelArr with module. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelArrExtra where diff --git a/ghc/lib/std/PrelBase.lhs b/ghc/lib/std/PrelBase.lhs index 7ed127c..6ba7618 100644 --- a/ghc/lib/std/PrelBase.lhs +++ b/ghc/lib/std/PrelBase.lhs @@ -71,7 +71,7 @@ Other Prelude modules are much easier with fewer complex dependencies. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelBase ( diff --git a/ghc/lib/std/PrelByteArr.lhs b/ghc/lib/std/PrelByteArr.lhs index f51ad17..f2a1b10 100644 --- a/ghc/lib/std/PrelByteArr.lhs +++ b/ghc/lib/std/PrelByteArr.lhs @@ -6,7 +6,7 @@ Byte-arrays are flat arrays of non-pointers only. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelByteArr where diff --git a/ghc/lib/std/PrelConc.lhs b/ghc/lib/std/PrelConc.lhs index d75bbca..bef86b6 100644 --- a/ghc/lib/std/PrelConc.lhs +++ b/ghc/lib/std/PrelConc.lhs @@ -7,7 +7,7 @@ Basic concurrency stuff \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelConc ( ThreadId(..) diff --git a/ghc/lib/std/PrelDynamic.lhs b/ghc/lib/std/PrelDynamic.lhs index b5939e4..b90fafe 100644 --- a/ghc/lib/std/PrelDynamic.lhs +++ b/ghc/lib/std/PrelDynamic.lhs @@ -7,7 +7,7 @@ Dynamic visible here. The rest of the operations on Dynamics are available in exts/Dynamic.lhs. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} #ifndef __HUGS__ module PrelDynamic where diff --git a/ghc/lib/std/PrelEnum.lhs b/ghc/lib/std/PrelEnum.lhs index 64b599c..f4d37ee 100644 --- a/ghc/lib/std/PrelEnum.lhs +++ b/ghc/lib/std/PrelEnum.lhs @@ -6,7 +6,7 @@ Instances of Bounded for various datatypes. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelEnum( Bounded(..), Enum(..), diff --git a/ghc/lib/std/PrelErr.lhs b/ghc/lib/std/PrelErr.lhs index 812a369..c0269cd 100644 --- a/ghc/lib/std/PrelErr.lhs +++ b/ghc/lib/std/PrelErr.lhs @@ -12,7 +12,7 @@ We cannot define these functions in a module where they might be used with what the typechecker figures out. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelErr ( irrefutPatError diff --git a/ghc/lib/std/PrelException.lhs b/ghc/lib/std/PrelException.lhs index 8b2d17b..d30a4f3 100644 --- a/ghc/lib/std/PrelException.lhs +++ b/ghc/lib/std/PrelException.lhs @@ -1,5 +1,5 @@ % ----------------------------------------------------------------------------- -% $Id: PrelException.lhs,v 1.18 2000/04/13 08:58:27 simonmar Exp $ +% $Id: PrelException.lhs,v 1.19 2000/04/14 15:28:24 rrt Exp $ % % (c) The GRAP/AQUA Project, Glasgow University, 1998 % @@ -7,7 +7,7 @@ Exceptions and exception-handling functions. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} #ifndef __HUGS__ module PrelException where diff --git a/ghc/lib/std/PrelFloat.lhs b/ghc/lib/std/PrelFloat.lhs index a1be918..250da00 100644 --- a/ghc/lib/std/PrelFloat.lhs +++ b/ghc/lib/std/PrelFloat.lhs @@ -16,7 +16,7 @@ and the classes \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} #include "../includes/ieee-flpt.h" diff --git a/ghc/lib/std/PrelForeign.lhs b/ghc/lib/std/PrelForeign.lhs index 87905fb..57af782 100644 --- a/ghc/lib/std/PrelForeign.lhs +++ b/ghc/lib/std/PrelForeign.lhs @@ -5,7 +5,7 @@ \section[Foreign]{Module @Foreign@} \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelForeign ( module PrelForeign, diff --git a/ghc/lib/std/PrelHandle.lhs b/ghc/lib/std/PrelHandle.lhs index 1731cbf..5659ee9 100644 --- a/ghc/lib/std/PrelHandle.lhs +++ b/ghc/lib/std/PrelHandle.lhs @@ -8,7 +8,7 @@ This module defines Haskell {\em handles} and the basic operations which are supported for them. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude -#include "cbits/stgio.h" #-} +{-# OPTIONS -fno-implicit-prelude -#include "cbits/stgio.h" #-} #include "cbits/stgerror.h" #ifndef __HUGS__ /* Hugs just includes this in PreludeBuiltin so no header needed */ diff --git a/ghc/lib/std/PrelHugs.lhs b/ghc/lib/std/PrelHugs.lhs index 897b6ea..805f7b7 100644 --- a/ghc/lib/std/PrelHugs.lhs +++ b/ghc/lib/std/PrelHugs.lhs @@ -3,7 +3,7 @@ % \begin{code} -{-# OPTIONS -fno-implicit-prelude -fcompiling-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelHugs ( hugsprimPmInt, diff --git a/ghc/lib/std/PrelIO.lhs b/ghc/lib/std/PrelIO.lhs index c151a17..43e0c63 100644 --- a/ghc/lib/std/PrelIO.lhs +++ b/ghc/lib/std/PrelIO.lhs @@ -10,7 +10,7 @@ module IO. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude -#include "cbits/stgio.h" #-} +{-# OPTIONS -fno-implicit-prelude -#include "cbits/stgio.h" #-} module PrelIO where diff --git a/ghc/lib/std/PrelIOBase.lhs b/ghc/lib/std/PrelIOBase.lhs index e83ddd5..d037275 100644 --- a/ghc/lib/std/PrelIOBase.lhs +++ b/ghc/lib/std/PrelIOBase.lhs @@ -1,5 +1,5 @@ % ----------------------------------------------------------------------------- -% $Id: PrelIOBase.lhs,v 1.22 2000/04/12 17:33:16 simonmar Exp $ +% $Id: PrelIOBase.lhs,v 1.23 2000/04/14 15:28:24 rrt Exp $ % % (c) The AQUA Project, Glasgow University, 1994-1998 % @@ -10,7 +10,7 @@ Definitions for the @IO@ monad and its friends. Everything is exported concretely; the @IO@ module itself exports abstractly. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude -#include "cbits/stgio.h" #-} +{-# OPTIONS -fno-implicit-prelude -#include "cbits/stgio.h" #-} #include "cbits/stgerror.h" #include "config.h" diff --git a/ghc/lib/std/PrelList.lhs b/ghc/lib/std/PrelList.lhs index 7b85297..1ea90d6 100644 --- a/ghc/lib/std/PrelList.lhs +++ b/ghc/lib/std/PrelList.lhs @@ -7,7 +7,7 @@ The List data type and its operations \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelList ( [] (..), diff --git a/ghc/lib/std/PrelMaybe.lhs b/ghc/lib/std/PrelMaybe.lhs index 16383de..008a544 100644 --- a/ghc/lib/std/PrelMaybe.lhs +++ b/ghc/lib/std/PrelMaybe.lhs @@ -6,7 +6,7 @@ The @Maybe@ type. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelMaybe where diff --git a/ghc/lib/std/PrelNum.lhs b/ghc/lib/std/PrelNum.lhs index 92ce9ae..1ff4c98 100644 --- a/ghc/lib/std/PrelNum.lhs +++ b/ghc/lib/std/PrelNum.lhs @@ -14,7 +14,7 @@ and the type \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelNum where diff --git a/ghc/lib/std/PrelPack.lhs b/ghc/lib/std/PrelPack.lhs index 6301060..934ffa7 100644 --- a/ghc/lib/std/PrelPack.lhs +++ b/ghc/lib/std/PrelPack.lhs @@ -11,7 +11,7 @@ The programmer level view of packed strings is provided by a GHC system library PackedString. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelPack ( diff --git a/ghc/lib/std/PrelRead.lhs b/ghc/lib/std/PrelRead.lhs index 0b4c156..3f64865 100644 --- a/ghc/lib/std/PrelRead.lhs +++ b/ghc/lib/std/PrelRead.lhs @@ -7,7 +7,7 @@ Instances of the Read class. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelRead where diff --git a/ghc/lib/std/PrelReal.lhs b/ghc/lib/std/PrelReal.lhs index 396b5c8..e6d64d5 100644 --- a/ghc/lib/std/PrelReal.lhs +++ b/ghc/lib/std/PrelReal.lhs @@ -17,7 +17,7 @@ and the classes \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelReal where diff --git a/ghc/lib/std/PrelST.lhs b/ghc/lib/std/PrelST.lhs index 1e2a473..77e337a 100644 --- a/ghc/lib/std/PrelST.lhs +++ b/ghc/lib/std/PrelST.lhs @@ -4,7 +4,7 @@ \section[PrelST]{The @ST@ monad} \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelST where diff --git a/ghc/lib/std/PrelShow.lhs b/ghc/lib/std/PrelShow.lhs index 837f94f..44e3364 100644 --- a/ghc/lib/std/PrelShow.lhs +++ b/ghc/lib/std/PrelShow.lhs @@ -5,7 +5,7 @@ \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelShow ( diff --git a/ghc/lib/std/PrelStable.lhs b/ghc/lib/std/PrelStable.lhs index 09dc0dc..8f6053d 100644 --- a/ghc/lib/std/PrelStable.lhs +++ b/ghc/lib/std/PrelStable.lhs @@ -1,11 +1,11 @@ % ----------------------------------------------------------------------------- -% $Id: PrelStable.lhs,v 1.4 2000/04/10 16:02:58 simonpj Exp $ +% $Id: PrelStable.lhs,v 1.5 2000/04/14 15:28:24 rrt Exp $ % % (c) The GHC Team, 1992-1999 % \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelStable ( StablePtr(..) diff --git a/ghc/lib/std/PrelTup.lhs b/ghc/lib/std/PrelTup.lhs index 68e4dc8..b1f143a 100644 --- a/ghc/lib/std/PrelTup.lhs +++ b/ghc/lib/std/PrelTup.lhs @@ -7,7 +7,7 @@ This modules defines the typle data types. \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelTup where diff --git a/ghc/lib/std/PrelWeak.lhs b/ghc/lib/std/PrelWeak.lhs index 9548a19..97a7bf5 100644 --- a/ghc/lib/std/PrelWeak.lhs +++ b/ghc/lib/std/PrelWeak.lhs @@ -5,7 +5,7 @@ \section[PrelWeak]{Module @PrelWeak@} \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module PrelWeak where diff --git a/ghc/lib/std/Prelude.lhs b/ghc/lib/std/Prelude.lhs index 01e55fc..7a09c42 100644 --- a/ghc/lib/std/Prelude.lhs +++ b/ghc/lib/std/Prelude.lhs @@ -3,7 +3,7 @@ special names such as () and -> shouldn't be resolved to Prelude.() and Prelude.-> (as they are normally). -- SDM 8/10/97 \begin{code} -{-# OPTIONS -fcompiling-prelude -fno-implicit-prelude #-} +{-# OPTIONS -fno-implicit-prelude #-} module Prelude ( -- 1.7.10.4