summaryrefslogtreecommitdiff
path: root/includes/rts
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2012-01-08 15:51:39 +0100
committerGabor Greif <ggreif@gmail.com>2012-07-18 14:00:05 +0200
commit6af4e5dc8d224dff3c065843e065c3861320ec33 (patch)
tree9a4424340beceb77657bd0a74ff19d69b80d3a47 /includes/rts
parent1aeaf17452be4d4da5684206a8d54e320f28c730 (diff)
downloadhaskell-6af4e5dc8d224dff3c065843e065c3861320ec33.tar.gz
use idiomatic type
Diffstat (limited to 'includes/rts')
-rw-r--r--includes/rts/prof/CCS.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/rts/prof/CCS.h b/includes/rts/prof/CCS.h
index 2492bb3bc1..e6c746b4bc 100644
--- a/includes/rts/prof/CCS.h
+++ b/includes/rts/prof/CCS.h
@@ -1,6 +1,6 @@
/* -----------------------------------------------------------------------------
*
- * (c) The GHC Team, 2009
+ * (c) The GHC Team, 2009-2012
*
* Macros for profiling operations in STG code
*
@@ -107,7 +107,7 @@ typedef struct IndexTable_ {
CostCentre *cc;
CostCentreStack *ccs;
struct IndexTable_ *next;
- unsigned int back_edge;
+ nat back_edge;
} IndexTable;