RE: ghc-6.4.1: panic - Prelude.last: empty list
Good point. I've fixed this, in the HEAD at least (not sure whether it'll make it into the stable branch). Now the conversion from TH syntax to GHC's syntax is done eagerly, so that no lurking exceptional values can subsequently crash GHC. It also means that any errors found during this conversion process can be reported more cleanly. Simon | -----Original Message----- | From: glasgow-haskell-bugs-bounces@haskell.org [mailto:glasgow-haskell-bugs- | bounces@haskell.org] On Behalf Of Bulat Ziganshin | Sent: 30 October 2005 20:27 | To: Einar Karttunen | Cc: glasgow-haskell-users@haskell.org; glasgow-haskell-bugs@haskell.org | Subject: Re: ghc-6.4.1: panic - Prelude.last: empty list | | Hello Einar, | | Sunday, October 30, 2005, 4:20:20 PM, you wrote: | | EK> I am having problems with GHC 6.4.1 dying with the message: | | EK> ghc-6.4.1: panic! (the `impossible' happened, GHC version 6.4.1): | EK> Prelude.last: empty list | | EK> The source is nontrivial and contains template haskell. The error | EK> seems to appear after byte code generation. | | are you will be glad to see trivial source of this problem? :) | | | {-# OPTIONS_GHC -fglasgow-exts -fth #-} | module Main where | main = return () | $( [d| |] >>= return.tail) | | | C:\!\Haskell\!!!!>ghc --make -ddump-splices test-derive.hs | Chasing modules from: test-derive.hs | Compiling Main ( test-derive.hs, test-derive.o ) | Loading package base-1.0 ... linking ... done. | Loading package haskell98-1.0 ... linking ... done. | Loading package template-haskell-1.0 ... linking ... done. | ghc.EXE: panic! (the `impossible' happened, GHC version 6.4.1): | Prelude.tail: empty list | | Please report it as a compiler bug to glasgow-haskell-bugs@haskell.org, | or http://sourceforge.net/projects/ghc/. | | | | as you see, TH sometimes just don't caught exceptions in your TH code. | moreover, with -ddump-splices TH can print code it generated and only | then panic on error in generation routine! | | -- | Best regards, | Bulat mailto:bulatz@HotPOP.com | | | | _______________________________________________ | Glasgow-haskell-bugs mailing list | Glasgow-haskell-bugs@haskell.org | http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs
participants (1)
-
Simon Peyton-Jones