mirror of
https://github.com/cc65/cc65.git
synced 2025-04-04 06:29:41 +00:00
Fixed '&function' and '&array'.
This commit is contained in:
parent
d23b577331
commit
9198b3be00
@ -1841,9 +1841,12 @@ void hie10 (ExprDesc* Expr)
|
||||
/* Do it anyway, just to avoid further warnings */
|
||||
Expr->Flags &= ~E_BITFIELD;
|
||||
}
|
||||
/* It's allowed in C to take the address of an array this way */
|
||||
if (!IsTypeFunc (Expr->Type) && !IsTypeArray (Expr->Type)) {
|
||||
/* The & operator yields an rvalue address */
|
||||
ED_AddrExpr (Expr);
|
||||
}
|
||||
Expr->Type = PointerTo (Expr->Type);
|
||||
/* The & operator yields an rvalue address */
|
||||
ED_AddrExpr (Expr);
|
||||
}
|
||||
break;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user