summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-01-06 16:37:29 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-01-06 16:37:29 +0000
commit55a752d6f41c2e54eff4130c3f7f475d1b7b9b1d (patch)
treec3330bbe663ac49e197fd63db3fd9b8269a3a2dc /ChangeLog
parent64a641cf2799c88ec11c002fc21badfb47983bf2 (diff)
downloadruby-55a752d6f41c2e54eff4130c3f7f475d1b7b9b1d.tar.gz
ruby-55a752d6f41c2e54eff4130c3f7f475d1b7b9b1d.tar.xz
ruby-55a752d6f41c2e54eff4130c3f7f475d1b7b9b1d.zip
[Forced commit]
I was wrong about something. It was a return value, not arguments that are not covered by the int-to-long promotion rule on IA64, if the function is not explicitly declared. The commit itself was generally a right thing to do, but just let me correct my commit message. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3304 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 1 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index b407ac662..ebd602046 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,11 +4,7 @@ Mon Jan 6 23:36:29 2003 Akinori MUSHA <knu@iDaemons.org>
st_compare_func_t, st_hash_func_t and st_each_func_t.
* st.h, st.c: Do explicit function declarations and do not rely on
- implicit declarations. On such platforms as IA64, int argument
- values are NOT automatically promoted to long (64bit) values, so
- explicit declarations are mandatory for those functions that
- take long values or pointers. This fixes miniruby's coredump on
- FreeBSD/IA64.
+ implicit declarations.
* class.c, eval.c, gc.c, hash.c, marshal.c, parse.y, variable.c:
Add proper casts to avoid warnings.