From: simonmar Date: Thu, 13 Jan 2005 14:15:38 +0000 (+0000) Subject: [project @ 2005-01-13 14:15:38 by simonmar] X-Git-Tag: Initial_conversion_from_CVS_complete~1247 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=593d142d840df09f64b2e8a24f19a298122e27a3;p=ghc-hetmet.git [project @ 2005-01-13 14:15:38 by simonmar] Fix the unreg test in the rule for building AutoApply$(_way).cmm --- diff --git a/ghc/rts/Makefile b/ghc/rts/Makefile index e18fc77..596ca79 100644 --- a/ghc/rts/Makefile +++ b/ghc/rts/Makefile @@ -184,7 +184,7 @@ AUTO_APPLY_CMM = AutoApply$(_way).cmm ifneq "$(BootingFromHc)" "YES" $(AUTO_APPLY_CMM): $(GHC_GENAPPLY) @$(RM) $@ - $(GHC_GENAPPLY) $(if $(filter u,$(way)), -u) >$@ + $(GHC_GENAPPLY) $(if $(filter $(way), u debug_u), -u) >$@ endif EXTRA_CMM_SRCS += $(AUTO_APPLY_CMM)