Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alex D
GHC
Commits
80ac4155
Commit
80ac4155
authored
Jun 17, 2011
by
Ian Lynagh
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of dippy:c:/msys/1.0/home/ian/ghc/.
parents
dd6c21a6
7a80e2dd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
compiler/cmm/CmmRewriteAssignments.hs
compiler/cmm/CmmRewriteAssignments.hs
+7
-2
compiler/cmm/CmmSpillReload.hs
compiler/cmm/CmmSpillReload.hs
+7
-2
No files found.
compiler/cmm/CmmRewriteAssignments.hs
View file @
80ac4155
...
...
@@ -3,9 +3,14 @@
{-# LANGUAGE FlexibleContexts #-}
{-# OPTIONS_GHC -fno-warn-warnings-deprecations #-}
#
if
__GLASGOW_HASKELL__
<
701
-- GHC 7.0.1 improved incomplete pattern warnings with GADTs
-- GHC 7.0.1 improved incomplete pattern warnings with GADTs, but for
-- older compilers we need to turn warn-incomplete-patterns off.
-- However, older compilers don't support OPTIONS_GHC inside CPP, so
-- we instead always turn it off, and then conditionally turn it back on.
{-# OPTIONS_GHC -fno-warn-incomplete-patterns #-}
#
if
__GLASGOW_HASKELL__
>=
700
{-# OPTIONS_GHC -fwarn-incomplete-patterns #-}
#
endif
-- This module implements generalized code motion for assignments to
...
...
compiler/cmm/CmmSpillReload.hs
View file @
80ac4155
...
...
@@ -3,9 +3,14 @@
-- If this module lives on I'd like to get rid of this flag in due course
{-# OPTIONS_GHC -fno-warn-warnings-deprecations #-}
#
if
__GLASGOW_HASKELL__
<
701
-- GHC 7.0.1 improved incomplete pattern warnings with GADTs
-- GHC 7.0.1 improved incomplete pattern warnings with GADTs, but for
-- older compilers we need to turn warn-incomplete-patterns off.
-- However, older compilers don't support OPTIONS_GHC inside CPP, so
-- we instead always turn it off, and then conditionally turn it back on.
{-# OPTIONS_GHC -fno-warn-incomplete-patterns #-}
#
if
__GLASGOW_HASKELL__
>=
700
{-# OPTIONS_GHC -fwarn-incomplete-patterns #-}
#
endif
module
CmmSpillReload
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment