diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-03-28 01:27:59 +0100 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-03-28 01:28:04 +0100 |
commit | e2f1ffc396cb2c2ef754ba80d2907245864c82e9 (patch) | |
tree | 8674c258549a373bec23365baa00510aec2d79d7 /ghc | |
parent | abde5da4dee5f3b83264f8471e458b20d04f8b29 (diff) | |
download | haskell-e2f1ffc396cb2c2ef754ba80d2907245864c82e9.tar.gz |
Rename C(obj)cplusplus to C(obj)cxx
Reviewed By: kgardas
Differential Revision: https://phabricator.haskell.org/D763
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/Main.hs b/ghc/Main.hs index a95382fb0d..a91fb26af7 100644 --- a/ghc/Main.hs +++ b/ghc/Main.hs @@ -653,7 +653,7 @@ doMake srcs = do haskellish (f,Nothing) = looksLikeModuleName f || isHaskellUserSrcFilename f || '.' `notElem` f haskellish (_,Just phase) = - phase `notElem` [ As True, As False, Cc, Cobjc, Cobjcplusplus, CmmCpp, Cmm + phase `notElem` [ As True, As False, Cc, Cobjc, Cobjcxx, CmmCpp, Cmm , StopLn] hsc_env <- GHC.getSession |