diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-09-06 09:31:58 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-09-06 09:31:58 +0000 |
commit | abcf8d64e9d687e015f7f50938b4cd006f277114 (patch) | |
tree | de5c69ad9b59c07ec610af201eac018d07363369 | |
parent | 93c274ab468687d45c3abf0b33314b5b554f133f (diff) | |
download | haskell-abcf8d64e9d687e015f7f50938b4cd006f277114.tar.gz |
-threaded and -prof do not currently work together
-rw-r--r-- | compiler/main/StaticFlags.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/main/StaticFlags.hs b/compiler/main/StaticFlags.hs index d8646cf494..b708ad0f8c 100644 --- a/compiler/main/StaticFlags.hs +++ b/compiler/main/StaticFlags.hs @@ -444,7 +444,6 @@ allowed_combination way = and [ x `allowedWith` y _ `allowedWith` WayDebug = True WayDebug `allowedWith` _ = True - WayThreaded `allowedWith` WayProf = True WayProf `allowedWith` WayUnreg = True WayProf `allowedWith` WayNDP = True _ `allowedWith` _ = False |