diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2014-10-07 08:48:06 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-10-07 08:48:07 -0500 |
commit | b3e5a7b50428edc07d11ef4db316c20029f7a3df (patch) | |
tree | 3b4d7e1be9c25581ae7ff0245f721eabd148f459 /testsuite/tests/numeric/should_run | |
parent | 460eebec65811c6a7bbe11645df322dda868e80d (diff) | |
download | haskell-b3e5a7b50428edc07d11ef4db316c20029f7a3df.tar.gz |
Delete __GLASGOW_HASKELL__ ifdefs for stage0 < 7.6.
Summary:
My understanding is that ghc 7.10 should be buildable with the last 3 versions
of ghc, i.e 7.6, 7.8 and 7.10 itself.
Test Plan: x
Reviewers: austin
Reviewed By: austin
Subscribers: hvr, simonmar, ezyang, carter, thomie
Differential Revision: https://phabricator.haskell.org/D254
Diffstat (limited to 'testsuite/tests/numeric/should_run')
-rw-r--r-- | testsuite/tests/numeric/should_run/T7014.hs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/testsuite/tests/numeric/should_run/T7014.hs b/testsuite/tests/numeric/should_run/T7014.hs index 222b33bd59..e02264d105 100644 --- a/testsuite/tests/numeric/should_run/T7014.hs +++ b/testsuite/tests/numeric/should_run/T7014.hs @@ -3,9 +3,6 @@ module Main where import Data.Bits -#if __GLASGOW_HASKELL__ < 705 -import Data.Word (Word) -#endif test_and1 :: Word -> Word test_and1 x = x .&. 0 |