mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
Fixed a typo
git-svn-id: svn://svn.cc65.org/cc65/trunk@3073 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
2fa9b6e5ac
commit
8c4b3599a2
@ -1677,7 +1677,7 @@ void hie10 (ExprDesc* Expr)
|
||||
case TOK_STAR:
|
||||
NextToken ();
|
||||
ExprWithCheck (hie10, Expr);
|
||||
if (ED_IsLVal (Expr) || !(ED_IsLocConst (Expr) || ED_IsLocStack (Expr)))) {
|
||||
if (ED_IsLVal (Expr) || !(ED_IsLocConst (Expr) || ED_IsLocStack (Expr))) {
|
||||
/* Not a const, load it into the primary and make it a
|
||||
* calculated value.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user