1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-29 02:55:20 +00:00

When generating forward references to functions, use the default code address

size.


git-svn-id: svn://svn.cc65.org/cc65/trunk@3948 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2009-02-22 16:38:07 +00:00
parent 36ed57ef80
commit bf810bf001

View File

@ -187,7 +187,7 @@ Type* GetImplicitFuncType (void)
F->TagTab = &EmptySymTab;
/* Fill the type string */
T[0].C = T_FUNC;
T[0].C = T_FUNC | CodeAddrSizeQualifier ();
T[0].A.P = F;
T[1].C = T_INT;
T[2].C = T_END;