From 859236615ebb0de274643574e1848aae221c9915 Mon Sep 17 00:00:00 2001 From: uz Date: Sat, 7 Jul 2012 17:36:15 +0000 Subject: [PATCH] Ignore a few more "harmless" functions when optimizing. git-svn-id: svn://svn.cc65.org/cc65/trunk@5767 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/coptstop.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cc65/coptstop.c b/src/cc65/coptstop.c index 90e040c46..fb3e753bc 100644 --- a/src/cc65/coptstop.c +++ b/src/cc65/coptstop.c @@ -1708,6 +1708,7 @@ static int HarmlessCall (const char* Name) "asrax2", "asrax3", "asrax4", + "asraxy", "bnegax", "complax", "decax1", @@ -1740,6 +1741,7 @@ static int HarmlessCall (const char* Name) "shrax2", "shrax3", "shrax4", + "shraxy", }; void* R = bsearch (Name, -- 2.39.5