mirror of
https://github.com/cc65/cc65.git
synced 2024-12-28 06:30:16 +00:00
Cosmetic change
git-svn-id: svn://svn.cc65.org/cc65/trunk@896 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
1a39515769
commit
c322febd66
@ -707,7 +707,7 @@ static unsigned FunctionParamList (FuncDesc* Func)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
static void CallFunction (ExprDesc* lval)
|
static void FunctionCall (ExprDesc* lval)
|
||||||
/* Perform a function call. Called from hie11, this routine will
|
/* Perform a function call. Called from hie11, this routine will
|
||||||
* either call the named function, or the function pointer in a/x.
|
* either call the named function, or the function pointer in a/x.
|
||||||
*/
|
*/
|
||||||
@ -1260,7 +1260,7 @@ static int hie11 (ExprDesc *lval)
|
|||||||
++lval->Type; /* Skip T_PTR */
|
++lval->Type; /* Skip T_PTR */
|
||||||
lval->Flags |= E_MEXPR;
|
lval->Flags |= E_MEXPR;
|
||||||
}
|
}
|
||||||
CallFunction (lval);
|
FunctionCall (lval);
|
||||||
lval->Flags = E_MEXPR;
|
lval->Flags = E_MEXPR;
|
||||||
lval->Type += DECODE_SIZE + 1; /* Set to result */
|
lval->Type += DECODE_SIZE + 1; /* Set to result */
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user