pike.git/
src/
program.c
Branch:
Tag:
Non-build tags
All tags
No tags
1998-04-06
1998-04-06 10:02:52 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
2f1b9e56c4af265270b583e6fbcc48f1e7eeb5e0 (
11
lines) (+
10
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
more debug added
Rev: src/program.c:1.69
4:
||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h"
-
RCSID("$Id: program.c,v 1.
68
1998/04/06
04
:
31
:
32
hubbe Exp $");
+
RCSID("$Id: program.c,v 1.
69
1998/04/06
10
:
02
:
52
hubbe Exp $");
#include "program.h" #include "object.h" #include "dynamic_buffer.h"
734:
if(p->identifiers[e].run_time_type!=T_MIXED) check_type(p->identifiers[e].run_time_type);
+
+
if(IDENTIFIER_IS_VARIABLE(p->identifiers[e].identifier_flags))
+
{
+
if(p->identifiers[e].offset & (sizeof(char *)-1))
+
{
+
fatal("Variable offset is not properly aligned (%s).\n",p->identifers[e].name->str);
}
-
+
}
+
}
for(e=0;e<(int)p->num_identifier_references;e++) {