Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
9d013869
Commit
9d013869
authored
May 23, 2009
by
Ian Lynagh
Browse files
Fix warnings in mkDerivedConstants
parent
bddd2ae2
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/mkDerivedConstants.c
View file @
9d013869
...
...
@@ -52,7 +52,7 @@
#define ctype(type)
/* nothing */
#else
#define ctype(type) \
printf("#define SIZEOF_" #type " %
d
\n", sizeof(type));
printf("#define SIZEOF_" #type " %
zu
\n", sizeof(type));
#endif
#if defined(GEN_HASKELL)
...
...
@@ -67,7 +67,7 @@
*/
#define field_type_(str, s_type, field) \
printf("#define REP_" str " b"); \
printf("%
d
\n", sizeof (__typeof__(((((s_type*)0)->field)))) * 8);
printf("%
zu
\n", sizeof (__typeof__(((((s_type*)0)->field)))) * 8);
#define field_type_gcptr_(str, s_type, field) \
printf("#define REP_" str " gcptr\n");
#endif
...
...
@@ -99,17 +99,17 @@
#if defined(GEN_HASKELL)
#define def_size(str, size) \
printf("sIZEOF_" str " :: Int\n"); \
printf("sIZEOF_" str " = %
d
\n", size);
printf("sIZEOF_" str " = %
zu
\n", size);
#else
#define def_size(str, size) \
printf("#define SIZEOF_" str " %
d
\n", size);
printf("#define SIZEOF_" str " %
zu
\n", size);
#endif
#if defined(GEN_HASKELL)
#define def_closure_size(str, size)
/* nothing */
#else
#define def_closure_size(str, size) \
printf("#define SIZEOF_" str " (SIZEOF_StgHeader+%
d
)\n", size);
printf("#define SIZEOF_" str " (SIZEOF_StgHeader+%
zu
)\n", size);
#endif
#define struct_size(s_type) \
...
...
@@ -197,13 +197,13 @@ main(int argc, char *argv[])
#ifndef GEN_HASKELL
printf
(
"/* This file is created automatically. Do not edit by hand.*/
\n\n
"
);
printf
(
"#define STD_HDR_SIZE %
d
\n
"
,
sizeofW
(
StgHeader
)
-
sizeofW
(
StgProfHeader
));
printf
(
"#define STD_HDR_SIZE %
zu
\n
"
,
sizeofW
(
StgHeader
)
-
sizeofW
(
StgProfHeader
));
/* grrr.. PROFILING is on so we need to subtract sizeofW(StgProfHeader) */
printf
(
"#define PROF_HDR_SIZE %
d
\n
"
,
sizeofW
(
StgProfHeader
));
printf
(
"#define GRAN_HDR_SIZE %
d
\n
"
,
sizeofW
(
StgGranHeader
));
printf
(
"#define PROF_HDR_SIZE %
zu
\n
"
,
sizeofW
(
StgProfHeader
));
printf
(
"#define GRAN_HDR_SIZE %
zu
\n
"
,
sizeofW
(
StgGranHeader
));
printf
(
"#define BLOCK_SIZE %
d
\n
"
,
BLOCK_SIZE
);
printf
(
"#define MBLOCK_SIZE %
d
\n
"
,
MBLOCK_SIZE
);
printf
(
"#define BLOCK_SIZE %
u
\n
"
,
BLOCK_SIZE
);
printf
(
"#define MBLOCK_SIZE %
u
\n
"
,
MBLOCK_SIZE
);
printf
(
"
\n\n
"
);
#endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment