mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 02:29:52 +00:00
Changed solution for r4329 so that it uses less memory.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4331 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
c69e2d9f0f
commit
7992bfb74a
@ -1107,7 +1107,7 @@ static void StructRef (ExprDesc* Expr)
|
||||
|
||||
/* The type is the type of the field plus any qualifiers from the struct */
|
||||
Q = GetQualifier (Expr->Type);
|
||||
if (Q == T_QUAL_NONE) {
|
||||
if (GetQualifier (Field->Type) == (GetQualifier (Field->Type) | Q)) {
|
||||
Expr->Type = Field->Type;
|
||||
} else {
|
||||
Expr->Type = TypeDup (Field->Type);
|
||||
@ -1599,9 +1599,9 @@ void hie10 (ExprDesc* Expr)
|
||||
ED_MakeRValExpr (Expr);
|
||||
}
|
||||
/* If the expression is already a pointer to function, the
|
||||
* additional dereferencing operator must be ignored. A function
|
||||
* additional dereferencing operator must be ignored. A function
|
||||
* itself is represented as "pointer to function", so any number
|
||||
* of dereference operators is legal, since the result will
|
||||
* of dereference operators is legal, since the result will
|
||||
* always be converted to "pointer to function".
|
||||
*/
|
||||
if (IsTypeFuncPtr (Expr->Type) || IsTypeFunc (Expr->Type)) {
|
||||
|
Loading…
Reference in New Issue
Block a user