From: uz Date: Sat, 15 Aug 2009 14:18:00 +0000 (+0000) Subject: Add more function to the "harmless calls" list. X-Git-Tag: V2.13.0rc1~240 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=33f6c85753e29a0983d561ea5feeb84c5c6a0c9c;p=cc65 Add more function to the "harmless calls" list. git-svn-id: svn://svn.cc65.org/cc65/trunk@4015 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/cc65/coptstop.c b/src/cc65/coptstop.c index 47825f059..bd9b7618c 100644 --- a/src/cc65/coptstop.c +++ b/src/cc65/coptstop.c @@ -821,9 +821,17 @@ static int HarmlessCall (const char* Name) */ { static const char* Tab[] = { + "aslax1", + "aslax2", + "asrax1", + "asrax2", "ldaxidx", "ldaxysp", "negax", + "shlax1", + "shlax2", + "shrax1", + "shrax2", }; void* R = bsearch (Name, @@ -837,7 +845,7 @@ static int HarmlessCall (const char* Name) /*****************************************************************************/ -/* Code */ +/* Code */ /*****************************************************************************/