diff options
Diffstat (limited to 'testsuite/tests')
-rw-r--r-- | testsuite/tests/codeGen/should_run/cgrun071.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/deriving/should_compile/drv012.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/gadt/gadt17.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/simplCore/should_compile/simpl014.hs | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/tests/codeGen/should_run/cgrun071.hs b/testsuite/tests/codeGen/should_run/cgrun071.hs index 29bf03d986..d55ee65e01 100644 --- a/testsuite/tests/codeGen/should_run/cgrun071.hs +++ b/testsuite/tests/codeGen/should_run/cgrun071.hs @@ -37,7 +37,7 @@ popcnt64 (W64# w#) = W# (popCnt# w#) #endif --- Cribbed from http://hackage.haskell.org/trac/ghc/ticket/3563 +-- Cribbed from http://ghc.haskell.org/trac/ghc/ticket/3563 slowPopcnt :: Word -> Word slowPopcnt x = count' (bitSize x) x 0 where diff --git a/testsuite/tests/deriving/should_compile/drv012.hs b/testsuite/tests/deriving/should_compile/drv012.hs index eb8f3847cd..1d07a4ee96 100644 --- a/testsuite/tests/deriving/should_compile/drv012.hs +++ b/testsuite/tests/deriving/should_compile/drv012.hs @@ -1,7 +1,7 @@ {-# LANGUAGE GADTs #-} -- !!! deriving for GADTs which declare Haskell98 data types. --- bug reported as http://hackage.haskell.org/trac/ghc/ticket/902 +-- bug reported as http://ghc.haskell.org/trac/ghc/ticket/902 module ShouldSucceed where data Maybe1 a where { diff --git a/testsuite/tests/gadt/gadt17.hs b/testsuite/tests/gadt/gadt17.hs index acef8100dc..26eeda9b2a 100644 --- a/testsuite/tests/gadt/gadt17.hs +++ b/testsuite/tests/gadt/gadt17.hs @@ -4,7 +4,7 @@ -- This one showed up a bug that required type refinement in TcIface -- See the call to coreRefineTys in TcIface -- --- Tests for bug: http://hackage.haskell.org/trac/ghc/ticket/685 +-- Tests for bug: http://ghc.haskell.org/trac/ghc/ticket/685 module ShouldCompile where diff --git a/testsuite/tests/simplCore/should_compile/simpl014.hs b/testsuite/tests/simplCore/should_compile/simpl014.hs index bb96547a67..2f2e78fa76 100644 --- a/testsuite/tests/simplCore/should_compile/simpl014.hs +++ b/testsuite/tests/simplCore/should_compile/simpl014.hs @@ -3,7 +3,7 @@ -- This one make SpecConstr generate bogus code (hence -O2), -- with a lint error, in GHC 6.4.1 --- C.f. http://hackage.haskell.org/trac/ghc/ticket/737 +-- C.f. http://ghc.haskell.org/trac/ghc/ticket/737 module ShouldCompile where |