[commit: ghc] master: DriverPhases: Fix flipped input extensions for cmm and cmmcpp (4f52bc1)
git at git.haskell.org
git at git.haskell.org
Sat Feb 3 02:22:45 UTC 2018
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/4f52bc17d888339b6bc3b9d27cd589aeee3b0b59/ghc
>---------------------------------------------------------------
commit 4f52bc17d888339b6bc3b9d27cd589aeee3b0b59
Author: Ben Gamari <bgamari.foss at gmail.com>
Date: Fri Feb 2 13:57:51 2018 -0500
DriverPhases: Fix flipped input extensions for cmm and cmmcpp
Test Plan: Validate
Subscribers: rwbarton, thomie, carter
Differential Revision: https://phabricator.haskell.org/D4349
>---------------------------------------------------------------
4f52bc17d888339b6bc3b9d27cd589aeee3b0b59
compiler/main/DriverPhases.hs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/compiler/main/DriverPhases.hs b/compiler/main/DriverPhases.hs
index 177c15e..57455a5 100644
--- a/compiler/main/DriverPhases.hs
+++ b/compiler/main/DriverPhases.hs
@@ -289,8 +289,8 @@ phaseInputExt LlvmOpt = "ll"
phaseInputExt LlvmLlc = "bc"
phaseInputExt LlvmMangle = "lm_s"
phaseInputExt SplitAs = "split_s"
-phaseInputExt CmmCpp = "cmm"
-phaseInputExt Cmm = "cmmcpp"
+phaseInputExt CmmCpp = "cmmcpp"
+phaseInputExt Cmm = "cmm"
phaseInputExt MergeForeign = "o"
phaseInputExt StopLn = "o"
More information about the ghc-commits
mailing list