1
0
mirror of https://github.com/cc65/cc65.git synced 2024-08-07 11:29:03 +00:00

Fixed an optimizer problem.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4632 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2010-03-21 14:08:46 +00:00
parent 1a4e2edede
commit 0e60a60c3e

View File

@ -6,7 +6,7 @@
/* */
/* */
/* */
/* (C) 2001-2009 Ullrich von Bassewitz */
/* (C) 2001-2010, Ullrich von Bassewitz */
/* Roemerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
@ -904,7 +904,7 @@ static unsigned OptPtrStore3 (CodeSeg* S)
X = NewCodeEntry (OP65_TAY, AM65_IMP, 0, 0, L[4]->LI);
CS_InsertEntry (S, X, I+15);
X = NewCodeEntry (OP65_LDA, L[8]->AM, L[8]->Arg, 0, L[8]->LI);
X = NewCodeEntry (OP65_LDA, L[9]->AM, L[9]->Arg, 0, L[9]->LI);
CS_InsertEntry (S, X, I+16);
Label = memcpy (xmalloc (Len-2), L[0]->Arg+2, Len-3);