summaryrefslogtreecommitdiff
path: root/compiler/main
diff options
context:
space:
mode:
authorBen Gamari <bgamari.foss@gmail.com>2018-02-02 13:57:51 -0500
committerBen Gamari <ben@smart-cactus.org>2018-02-02 13:57:51 -0500
commit4f52bc17d888339b6bc3b9d27cd589aeee3b0b59 (patch)
treeb1a198c0a71a14d27ecb855bd7f5f257b15ffb38 /compiler/main
parent7fb3287f7e3dabcbc1c76297bd4e9ed6de39599a (diff)
downloadhaskell-4f52bc17d888339b6bc3b9d27cd589aeee3b0b59.tar.gz
DriverPhases: Fix flipped input extensions for cmm and cmmcpp
Test Plan: Validate Subscribers: rwbarton, thomie, carter Differential Revision: https://phabricator.haskell.org/D4349
Diffstat (limited to 'compiler/main')
-rw-r--r--compiler/main/DriverPhases.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/main/DriverPhases.hs b/compiler/main/DriverPhases.hs
index 177c15ec8e..57455a5463 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"