summaryrefslogtreecommitdiff
path: root/compiler/main/DriverPhases.hs
diff options
context:
space:
mode:
authorDavid Terei <davidterei@gmail.com>2011-05-02 01:03:13 -0700
committerDavid Terei <davidterei@gmail.com>2011-05-04 15:01:16 -0700
commit50e0db459cb1b1341bbd527a3c450f0930e6ab43 (patch)
tree1106b342477ae71bb77c8b05a259a04a3e8c0ccf /compiler/main/DriverPhases.hs
parent22423fc93a008732e426f10f1b545b5d571173f3 (diff)
downloadhaskell-50e0db459cb1b1341bbd527a3c450f0930e6ab43.tar.gz
LLVM: Support LLVM 2.9 (#5103)
Instead of using the GNU As subsection feature on Linux/Windows for TNTC we now use the LLVM Mangler on all platforms.
Diffstat (limited to 'compiler/main/DriverPhases.hs')
-rw-r--r--compiler/main/DriverPhases.hs4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/main/DriverPhases.hs b/compiler/main/DriverPhases.hs
index f6a9738af1..4702682ee4 100644
--- a/compiler/main/DriverPhases.hs
+++ b/compiler/main/DriverPhases.hs
@@ -143,11 +143,7 @@ nextPhase (Hsc _) = HCc
nextPhase SplitMangle = As
nextPhase As = SplitAs
nextPhase LlvmOpt = LlvmLlc
-#if darwin_TARGET_OS
nextPhase LlvmLlc = LlvmMangle
-#else
-nextPhase LlvmLlc = As
-#endif
nextPhase LlvmMangle = As
nextPhase SplitAs = MergeStub
nextPhase Ccpp = As