diff options
author | John van Groningen | 2013-05-24 11:35:15 +0000 |
---|---|---|
committer | John van Groningen | 2013-05-24 11:35:15 +0000 |
commit | ba92d6a9c99a4de70879cb592a978aa57473a226 (patch) | |
tree | 6419e624233f3609dfc3215b243a9e5cefcef655 | |
parent | add makefiles for thread safe windows versions (diff) |
fix a comparison for the stupid 64 bit compiler with a 32 bit long
-rw-r--r-- | cgcode.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1156,7 +1156,11 @@ void code_buildI (CleanInt value) { INSTRUCTION_GRAPH graph_3,graph_4,graph_5; +#ifndef G_A64 if (!parallel_flag && (unsigned long)value<(unsigned long)33){ +#else + if (!parallel_flag && (uint_64)value<(uint_64)33){ +#endif if (small_integers_label==NULL) small_integers_label=enter_label ("small_integers",IMPORT_LABEL | DATA_LABEL); |