From ea9a5be67418ab76c4fa33736a3335b517c9e7f9 Mon Sep 17 00:00:00 2001 From: "simonpj@microsoft.com" Date: Tue, 12 Aug 2008 14:40:28 +0000 Subject: [PATCH] Suppress uniques when (and only when) we have -dsuppress-uniques --- compiler/basicTypes/Unique.lhs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/basicTypes/Unique.lhs b/compiler/basicTypes/Unique.lhs index d8f244e..202ae9e 100644 --- a/compiler/basicTypes/Unique.lhs +++ b/compiler/basicTypes/Unique.lhs @@ -61,7 +61,6 @@ import FastTypes import FastString import Outputable import StaticFlags -import Util #if defined(__GLASGOW_HASKELL__) --just for implementing a fast [0,61) -> Char function @@ -212,7 +211,7 @@ We do sometimes make strings with @Uniques@ in them: \begin{code} pprUnique :: Unique -> SDoc pprUnique uniq - | debugIsOn || opt_SuppressUniques + | opt_SuppressUniques = empty -- Used exclusively to suppress uniques so you | otherwise -- can compare output easily = case unpkUnique uniq of -- 1.7.10.4