From: dons Date: Fri, 8 Oct 2004 03:09:19 +0000 (+0000) Subject: [project @ 2004-10-08 03:09:19 by dons] X-Git-Tag: Initial_conversion_from_CVS_complete~1523 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=08253784125a451459e526b73645b0ef97174a5a;p=ghc-hetmet.git [project @ 2004-10-08 03:09:19 by dons] Add missing final #else case for howToAccessLabel. --- diff --git a/ghc/compiler/nativeGen/PositionIndependentCode.hs b/ghc/compiler/nativeGen/PositionIndependentCode.hs index d6812b1..cca5df8 100644 --- a/ghc/compiler/nativeGen/PositionIndependentCode.hs +++ b/ghc/compiler/nativeGen/PositionIndependentCode.hs @@ -241,6 +241,9 @@ howToAccessLabel isJump lbl | isJump = AccessViaStub #endif | otherwise = AccessViaSymbolPtr + +#else +howToAccessLabel = panic "PositionIndependentCode.howToAccessLabel" #endif -- -------------------------------------------------------------------