From 3010bab09e6dd7e97d1372c7054274fdd65b0a81 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 25 Feb 2004 11:24:34 +0000 Subject: [PATCH] [project @ 2004-02-25 11:24:34 by simonmar] Add missing case to allowedWith --- ghc/compiler/main/DriverState.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghc/compiler/main/DriverState.hs b/ghc/compiler/main/DriverState.hs index b6b527e..f00f792 100644 --- a/ghc/compiler/main/DriverState.hs +++ b/ghc/compiler/main/DriverState.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- $Id: DriverState.hs,v 1.98 2004/02/24 17:33:34 simonmar Exp $ +-- $Id: DriverState.hs,v 1.99 2004/02/25 11:24:34 simonmar Exp $ -- -- Settings for the driver -- @@ -529,6 +529,7 @@ allowed_combination way = and [ x `allowedWith` y WayProf `allowedWith` WayUnreg = True WayProf `allowedWith` WaySMP = True WayProf `allowedWith` WayNDP = True + _ `allowedWith` _ = False findBuildTag :: IO [String] -- new options -- 1.7.10.4