Fixed bug in function return code
This commit is contained in:
parent
9565b3bd24
commit
dcb6a17cf3
2 changed files with 3 additions and 1 deletions
|
@ -257,7 +257,7 @@ CodeEndBlock(df, StackAdjustment)
|
||||||
}
|
}
|
||||||
if( tp->tp_size == word_size )
|
if( tp->tp_size == word_size )
|
||||||
C_lol(-tp->tp_size);
|
C_lol(-tp->tp_size);
|
||||||
if( tp->tp_size == 2 * word_size )
|
else if( tp->tp_size == 2 * word_size )
|
||||||
C_ldl(-tp->tp_size);
|
C_ldl(-tp->tp_size);
|
||||||
else {
|
else {
|
||||||
C_lal(-tp->tp_size);
|
C_lal(-tp->tp_size);
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
Also, the "symbol2str.c" file is produced from this file.
|
Also, the "symbol2str.c" file is produced from this file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef ____
|
||||||
struct tokenname tkspec[] = { /* the names of the special tokens */
|
struct tokenname tkspec[] = { /* the names of the special tokens */
|
||||||
{IDENT, "identifier"},
|
{IDENT, "identifier"},
|
||||||
{STRING, "string"},
|
{STRING, "string"},
|
||||||
|
@ -27,6 +28,7 @@ struct tokenname tkcomp[] = { /* names of the composite tokens */
|
||||||
{BECOMES, ":="},
|
{BECOMES, ":="},
|
||||||
{0, ""}
|
{0, ""}
|
||||||
};
|
};
|
||||||
|
#endif /* ____ */
|
||||||
|
|
||||||
struct tokenname tkidf[] = { /* names of the identifier tokens */
|
struct tokenname tkidf[] = { /* names of the identifier tokens */
|
||||||
{AND, "and"},
|
{AND, "and"},
|
||||||
|
|
Loading…
Reference in a new issue