aboutsummaryrefslogtreecommitdiff
path: root/thunk.h
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2012-02-01 20:50:10 +0100
committerStefan Weil <sw@weilnetz.de>2012-02-28 22:33:41 +0100
commit9c6ecf3e76311ac04cf1779f0c9beef831c152b5 (patch)
treeab86ff17c9730782cdc203b2d20b256125334818 /thunk.h
parentb55c952aea6de024bf1a06357b49367fba045443 (diff)
Remove macro HOST_LONG_SIZE
HOST_LONG_SIZE is simply the size of a pointer value. There is no need for this macro. Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'thunk.h')
-rw-r--r--thunk.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/thunk.h b/thunk.h
index 109c541f0f..9810743191 100644
--- a/thunk.h
+++ b/thunk.h
@@ -99,7 +99,7 @@ static inline int thunk_type_size(const argtype *type_ptr, int is_host)
case TYPE_PTRVOID:
case TYPE_PTR:
if (is_host) {
- return HOST_LONG_SIZE;
+ return sizeof(void *);
} else {
return TARGET_ABI_BITS / 8;
}
@@ -136,7 +136,7 @@ static inline int thunk_type_align(const argtype *type_ptr, int is_host)
case TYPE_PTRVOID:
case TYPE_PTR:
if (is_host) {
- return HOST_LONG_SIZE;
+ return sizeof(void *);
} else {
return TARGET_ABI_BITS / 8;
}