Commit 14d63fb6 by Mike Stump Committed by Mike Stump

objc-act.c (volatilized_hash): Avoid warnings on 64-bit machines.

        * objc-act.c (volatilized_hash): Avoid warnings on 64-bit
        machines.

From-SVN: r100155
parent 81043a94
2005-05-25 Mike Stump <mrs@mrs.kithrup.com>
* objc-act.c (volatilized_hash): Avoid warnings on 64-bit
machines.
2005-05-24 Ziemowit Laski <zlaski@apple.com> 2005-05-24 Ziemowit Laski <zlaski@apple.com>
* objc-act.c (objc_build_struct): New function. * objc-act.c (objc_build_struct): New function.
......
...@@ -1247,7 +1247,7 @@ volatilized_hash (const void *ptr) ...@@ -1247,7 +1247,7 @@ volatilized_hash (const void *ptr)
{ {
tree typ = ((struct volatilized_type *)ptr)->type; tree typ = ((struct volatilized_type *)ptr)->type;
return (hashval_t) typ; return htab_hash_pointer(typ);
} }
static int static int
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment