summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-02 16:45:05 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-02 16:45:05 +0000
commitea4b48acd6913efae88a29a023b7158e47e8d468 (patch)
treee61c201c2fa66611f417448ad12372befeff59f0
parentcadfbc3393bc5f0b183367e9c7c914a4dc054eb9 (diff)
downloadruby-ea4b48acd6913efae88a29a023b7158e47e8d468.tar.gz
ruby-ea4b48acd6913efae88a29a023b7158e47e8d468.tar.xz
ruby-ea4b48acd6913efae88a29a023b7158e47e8d468.zip
* regint.h (GET_ALIGNMENT_PAD_SIZE, ALIGNMENT_RIGHT): cast pointer to
uintptr_t instead of unsigned int. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17826 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog13
-rw-r--r--regint.h4
2 files changed, 11 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 779402ede..fde75383c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,12 +1,17 @@
+Thu Jul 3 01:44:01 2008 Yusuke Endoh <mame@tsg.ne.jp>
+
+ * regint.h (GET_ALIGNMENT_PAD_SIZE, ALIGNMENT_RIGHT): cast pointer to
+ uintptr_t instead of unsigned int.
+
Thu Jul 3 01:23:13 2008 Yusuke Endoh <mame@tsg.ne.jp>
- * sprintf.c: include ieeefp.h to refer isinf.
+ * sprintf.c: include ieeefp.h to refer isinf.
- * ext/bigdecimal/bigdecimal.c: ditto.
+ * ext/bigdecimal/bigdecimal.c: ditto.
- * ext/json/ext/generator/generator.c: ditto.
+ * ext/json/ext/generator/generator.c: ditto.
- * rational.c: ditto.
+ * rational.c: ditto.
Thu Jul 3 01:01:57 2008 Yusuke Endoh <mame@tsg.ne.jp>
diff --git a/regint.h b/regint.h
index c597fff6c..861e13e27 100644
--- a/regint.h
+++ b/regint.h
@@ -262,13 +262,13 @@
#define GET_ALIGNMENT_PAD_SIZE(addr,pad_size) do {\
(pad_size) = WORD_ALIGNMENT_SIZE \
- - ((unsigned int )(addr) % WORD_ALIGNMENT_SIZE);\
+ - ((uintptr_t )(addr) % WORD_ALIGNMENT_SIZE);\
if ((pad_size) == WORD_ALIGNMENT_SIZE) (pad_size) = 0;\
} while (0)
#define ALIGNMENT_RIGHT(addr) do {\
(addr) += (WORD_ALIGNMENT_SIZE - 1);\
- (addr) -= ((unsigned int )(addr) % WORD_ALIGNMENT_SIZE);\
+ (addr) -= ((uintptr_t )(addr) % WORD_ALIGNMENT_SIZE);\
} while (0)
#endif /* PLATFORM_UNALIGNED_WORD_ACCESS */