From bbf35899c49a083be1b97e230478a718facfee75 Mon Sep 17 00:00:00 2001 From: bernhardheld Date: Sat, 15 Mar 2003 23:54:31 +0000 Subject: [PATCH] * src/ds390/gen.c (genAddrOf): fixed bug #704087 git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2393 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- ChangeLog | 1 + src/ds390/gen.c | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 17a5845a..ef376579 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2003-03-15 Bernhard Held * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541 + * src/ds390/gen.c (genAddrOf): fixed bug #704087 2003-03-13 diff --git a/src/ds390/gen.c b/src/ds390/gen.c index fb50e5be..9fb6cda6 100644 --- a/src/ds390/gen.c +++ b/src/ds390/gen.c @@ -10564,13 +10564,13 @@ genAddrOf (iCode * ic) if (offset) { switch (offset) { case 1: - tsprintf(s, sizeof(s), "!his",sym->rname); + tsprintf(s, sizeof(s), "#!his",sym->rname); break; case 2: - tsprintf(s, sizeof(s), "!hihis",sym->rname); + tsprintf(s, sizeof(s), "#!hihis",sym->rname); break; case 3: - tsprintf(s, sizeof(s), "!hihihis",sym->rname); + tsprintf(s, sizeof(s), "#!hihihis",sym->rname); break; default: /* should not need this (just in case) */ SNPRINTF (s, sizeof(s), "#(%s >> %d)", -- 2.47.2