From b01110d1352de5d972d8fb63f28c244d2c1ff99b Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Wed, 12 Sep 2007 11:41:10 +0000 Subject: [PATCH] move generic graph-colouring code into util It is needed by cmm/StackColor, and hence is needed even when there is no native code generator. --- compiler/{nativeGen => utils}/GraphBase.hs | 0 compiler/{nativeGen => utils}/GraphColor.hs | 0 compiler/{nativeGen => utils}/GraphOps.hs | 0 compiler/{nativeGen => utils}/GraphPpr.hs | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename compiler/{nativeGen => utils}/GraphBase.hs (100%) rename compiler/{nativeGen => utils}/GraphColor.hs (100%) rename compiler/{nativeGen => utils}/GraphOps.hs (100%) rename compiler/{nativeGen => utils}/GraphPpr.hs (100%) diff --git a/compiler/nativeGen/GraphBase.hs b/compiler/utils/GraphBase.hs similarity index 100% rename from compiler/nativeGen/GraphBase.hs rename to compiler/utils/GraphBase.hs diff --git a/compiler/nativeGen/GraphColor.hs b/compiler/utils/GraphColor.hs similarity index 100% rename from compiler/nativeGen/GraphColor.hs rename to compiler/utils/GraphColor.hs diff --git a/compiler/nativeGen/GraphOps.hs b/compiler/utils/GraphOps.hs similarity index 100% rename from compiler/nativeGen/GraphOps.hs rename to compiler/utils/GraphOps.hs diff --git a/compiler/nativeGen/GraphPpr.hs b/compiler/utils/GraphPpr.hs similarity index 100% rename from compiler/nativeGen/GraphPpr.hs rename to compiler/utils/GraphPpr.hs -- 1.7.10.4