From: Tim Chevalier Date: Wed, 19 Mar 2008 18:25:21 +0000 (+0000) Subject: Fixed remaining warning in coreSyn/MkExternalCore X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=d5a9ee0e98a76bca1b41bbc5252e851c88b3ff4c;hp=d5a9ee0e98a76bca1b41bbc5252e851c88b3ff4c Fixed remaining warning in coreSyn/MkExternalCore There was a (suppressed) warning about an incomplete pattern match in make_alt. This was because the DEFAULT alt never has variable bindings. I thought it would be better to check that case and panic if it happens than to have an incomplete pattern. It's still not great, but at least now we don't have to suppress any warnings in this file. ---