]> git.sur5r.net Git - cc65/commit
Fix several errors: The address operator on functions (resulting in a
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 24 Nov 2000 10:46:04 +0000 (10:46 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 24 Nov 2000 10:46:04 +0000 (10:46 +0000)
commitf6768466be9396e2cd04f8316bc7e096e4d48409
treee582f463204d6fbb8fe4b8b417ac3c5b8f6866fb
parent0333dbbd85093e67289848a352b948ba2a61b0c0
Fix several errors: The address operator on functions (resulting in a
pointer-to-function type) was not possible. It is redundant but allowed.
A cast with a function on the right side resulted in an internal compiler
error, since the implicit cast from function to pointer-to-function was
missing in this case.
An assignment of a function to a void pointer was not possible because the
same implicit conversion was missing.

git-svn-id: svn://svn.cc65.org/cc65/trunk@482 b7a2c559-68d2-44c3-8de9-860c34a00d81
src/cc65/expr.c