Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Shayne Fletcher
Glasgow Haskell Compiler
Commits
b29e277d
Commit
b29e277d
authored
May 08, 2011
by
Ian Lynagh
Browse files
Change some conditional tests from Config.cTargetArch to platformArch
parent
7da235b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/main/DriverPipeline.hs
View file @
b29e277d
...
...
@@ -51,6 +51,7 @@ import SrcLoc
import
FastString
import
LlvmCodeGen
(
llvmFixupAsm
)
import
MonadUtils
import
Platform
import
Exception
import
Data.IORef
(
readIORef
)
...
...
@@ -1059,7 +1060,7 @@ runPhase cc_phase input_fn dflags
-- than a double, which leads to unpredictable results.
-- By default, we turn this off with -ffloat-store unless
-- the user specified -fexcess-precision.
(
if
cTargetArch
==
I3
86
&&
(
if
platformArch
(
targetPlatform
dflags
)
==
ArchX
86
&&
not
(
dopt
Opt_ExcessPrecision
dflags
)
then
[
"-ffloat-store"
]
else
[]
)
++
...
...
@@ -1102,7 +1103,7 @@ runPhase cc_phase input_fn dflags
-- regardless of the ordering.
--
-- This is a temporary hack.
++
(
if
cTargetArch
==
Sparc
++
(
if
platformArch
(
targetPlatform
dflags
)
==
ArchSPARC
then
[
"-mcpu=v9"
]
else
[]
)
...
...
@@ -1180,7 +1181,7 @@ runPhase As input_fn dflags
-- regardless of the ordering.
--
-- This is a temporary hack.
++
(
if
cTargetArch
==
Sparc
++
(
if
platformArch
(
targetPlatform
dflags
)
==
ArchSPARC
then
[
SysTools
.
Option
"-mcpu=v9"
]
else
[]
)
...
...
@@ -1235,7 +1236,7 @@ runPhase SplitAs _input_fn dflags
-- regardless of the ordering.
--
-- This is a temporary hack.
(
if
cTargetArch
==
Sparc
(
if
platformArch
(
targetPlatform
dflags
)
==
ArchSPARC
then
[
SysTools
.
Option
"-mcpu=v9"
]
else
[]
)
++
...
...
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