diff options
author | Gabor Greif <ggreif@gmail.com> | 2012-01-08 15:51:39 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2012-07-18 14:00:05 +0200 |
commit | 6af4e5dc8d224dff3c065843e065c3861320ec33 (patch) | |
tree | 9a4424340beceb77657bd0a74ff19d69b80d3a47 /includes/rts | |
parent | 1aeaf17452be4d4da5684206a8d54e320f28c730 (diff) | |
download | haskell-6af4e5dc8d224dff3c065843e065c3861320ec33.tar.gz |
use idiomatic type
Diffstat (limited to 'includes/rts')
-rw-r--r-- | includes/rts/prof/CCS.h | 4 |
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; |