From 33f6c85753e29a0983d561ea5feeb84c5c6a0c9c Mon Sep 17 00:00:00 2001 From: uz Date: Sat, 15 Aug 2009 14:18:00 +0000 Subject: [PATCH] Add more function to the "harmless calls" list. git-svn-id: svn://svn.cc65.org/cc65/trunk@4015 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/coptstop.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 */ /*****************************************************************************/