mirror of
https://github.com/GaloisInc/macaw.git
synced 2024-12-28 08:34:23 +03:00
Remove some GHC optimization flags
The goal with these flags was to improve compile times by reducing the number of times that the simplifier runs. It seems like that sometimes causes compiler errors (e.g., the register allocator crash we hit sometimes) - presumably the register allocator makes some assumptions about how much the simplifier is run.
This commit is contained in:
parent
70f4943ba1
commit
d5cab147e5
@ -3,7 +3,6 @@
|
||||
{-# LANGUAGE GADTs #-}
|
||||
{-# LANGUAGE TemplateHaskell #-}
|
||||
{-# LANGUAGE TypeApplications #-}
|
||||
{-# OPTIONS_GHC -fno-spec-constr -fno-specialise -fmax-simplifier-iterations=1 -fno-call-arity #-}
|
||||
module Data.Macaw.PPC.Semantics.PPC32
|
||||
( execInstruction
|
||||
) where
|
||||
|
@ -3,7 +3,6 @@
|
||||
{-# LANGUAGE GADTs #-}
|
||||
{-# LANGUAGE TemplateHaskell #-}
|
||||
{-# LANGUAGE TypeApplications #-}
|
||||
{-# OPTIONS_GHC -fno-spec-constr -fno-specialise -fmax-simplifier-iterations=1 -fno-call-arity #-}
|
||||
module Data.Macaw.PPC.Semantics.PPC64
|
||||
( execInstruction
|
||||
) where
|
||||
|
Loading…
Reference in New Issue
Block a user