diff options
author | Moritz Angermann <moritz.angermann@gmail.com> | 2017-09-22 16:17:30 +0800 |
---|---|---|
committer | Moritz Angermann <moritz.angermann@gmail.com> | 2017-09-23 21:26:38 +0800 |
commit | d55961262be1b6bbacea0cd6864346f8822ee99b (patch) | |
tree | 3594e385cb0c8cce3ca129b8c089662e2f054422 | |
parent | c2373b7b09939027742626e4a7bbba05ea1f6850 (diff) | |
download | haskell-d55961262be1b6bbacea0cd6864346f8822ee99b.tar.gz |
Fix AsmTempLabel
Summary:
This is another fallout from 8b007abb
should fix Trac #14264. I am not sure if this is
complete. It does however allow me to build an iOS
LLVM cross compiler.
Reviewers: bgamari, trofi, austin, simonmar
Reviewed By: trofi
Subscribers: rwbarton, thomie
GHC Trac Issues: #14264
Differential Revision: https://phabricator.haskell.org/D4014
-rw-r--r-- | compiler/cmm/CLabel.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/cmm/CLabel.hs b/compiler/cmm/CLabel.hs index 28146ec1a9..54395b6599 100644 --- a/compiler/cmm/CLabel.hs +++ b/compiler/cmm/CLabel.hs @@ -1092,7 +1092,6 @@ instance Outputable CLabel where pprCLabel :: Platform -> CLabel -> SDoc pprCLabel platform (AsmTempLabel u) - | cGhcWithNativeCodeGen == "YES" = getPprStyle $ \ sty -> if asmStyle sty then ptext (asmTempLabelPrefix platform) <> pprUniqueAlways u |