Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/cea630797e9cb3a2bcd424a18fa29d4373092e86 >--------------------------------------------------------------- commit cea630797e9cb3a2bcd424a18fa29d4373092e86 Author: David Terei <[email protected]> Date: Thu Jan 12 18:47:25 2012 -0800 Fix validation error >--------------------------------------------------------------- compiler/llvmGen/LlvmCodeGen/Regs.hs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/llvmGen/LlvmCodeGen/Regs.hs b/compiler/llvmGen/LlvmCodeGen/Regs.hs index 15a1897..b7ff9f0 100644 --- a/compiler/llvmGen/LlvmCodeGen/Regs.hs +++ b/compiler/llvmGen/LlvmCodeGen/Regs.hs @@ -78,7 +78,7 @@ stgTBAA ] -- | Id values -topN, stackN, heapN, rxN, baseN :: LlvmMetaUnamed +topN, stackN, heapN, rxN, baseN, otherN:: LlvmMetaUnamed topN = LMMetaUnamed 0 stackN = LMMetaUnamed 1 heapN = LMMetaUnamed 2 @@ -87,7 +87,7 @@ baseN = LMMetaUnamed 4 otherN = LMMetaUnamed 5 -- | The various TBAA types -top, heap, stack, rx, base :: MetaData +top, heap, stack, rx, base, other :: MetaData top = (tbaa, topN) heap = (tbaa, heapN) stack = (tbaa, stackN) _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
