mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 14:00:21 +02:00
* tag.c (scm_tag): Base tag on vtable pointer.
This commit is contained in:
parent
ad1965993e
commit
ff2961ec2c
1 changed files with 1 additions and 2 deletions
|
@ -175,8 +175,7 @@ scm_tag (x)
|
|||
case scm_tcs_cons_gloc:
|
||||
/* must be a struct */
|
||||
{
|
||||
int tag;
|
||||
tag = SCM_STRUCT_VTABLE_DATA (x)[scm_struct_i_tag];
|
||||
int tag = (int) SCM_STRUCT_VTABLE_DATA (x) >> 3;
|
||||
return SCM_MAKINUM (SCM_INUM (SCM_CDR (scm_utag_struct_base))
|
||||
| (tag << 8));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue