summaryrefslogtreecommitdiff
path: root/compiler/llvmGen/LlvmCodeGen/Base.hs
diff options
context:
space:
mode:
authorEdward Z. Yang <ezyang@cs.stanford.edu>2015-04-14 07:32:17 -0500
committerAustin Seipp <austin@well-typed.com>2015-04-14 07:33:17 -0500
commit79bfe27d9157fb3d44b4cc64f168bc11191d3f9b (patch)
treedecfd1f8677fd677aabb8c426a8bd3a16ec0783e /compiler/llvmGen/LlvmCodeGen/Base.hs
parent7febc2bb86b238713cfb9f52dff32039464dfe66 (diff)
downloadhaskell-79bfe27d9157fb3d44b4cc64f168bc11191d3f9b.tar.gz
Remove LlvmCodeGen panic variants.
It's pretty irritating having hasktags with multiple top-level declarations with the same type; hasktags can't figure out which declaration you actually wanted. Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu> Reviewed By: dterei, austin Differential Revision: https://phabricator.haskell.org/D819
Diffstat (limited to 'compiler/llvmGen/LlvmCodeGen/Base.hs')
-rw-r--r--compiler/llvmGen/LlvmCodeGen/Base.hs10
1 files changed, 1 insertions, 9 deletions
diff --git a/compiler/llvmGen/LlvmCodeGen/Base.hs b/compiler/llvmGen/LlvmCodeGen/Base.hs
index 15918a3a45..5ef0a4bbfa 100644
--- a/compiler/llvmGen/LlvmCodeGen/Base.hs
+++ b/compiler/llvmGen/LlvmCodeGen/Base.hs
@@ -45,7 +45,7 @@ import CodeGen.Platform ( activeStgRegs )
import DynFlags
import FastString
import Cmm
-import qualified Outputable as Outp
+import Outputable as Outp
import qualified Pretty as Prt
import Platform
import UniqFM
@@ -538,11 +538,3 @@ aliasify (LMGlobal var val) = do
-- away with casting the alias to the desired type in @getSymbolPtr@
-- and instead just emit a reference to the definition symbol directly.
-- This is the @Just@ case in @getSymbolPtr@.
-
--- ----------------------------------------------------------------------------
--- * Misc
---
-
--- | Error function
-panic :: String -> a
-panic s = Outp.panic $ "LlvmCodeGen.Base." ++ s