]> git.sur5r.net Git - cc65/commitdiff
Check the InlineStdFuncs flag later
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 4 Jun 2004 14:37:50 +0000 (14:37 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 4 Jun 2004 14:37:50 +0000 (14:37 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3086 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/expr.c

index c89cfd0233f2ca50d906496a2e1f761ee824e938..23f148e53791a5aff47b6192dbcc0d8a68758fc1 100644 (file)
@@ -675,9 +675,8 @@ static void FunctionCall (ExprDesc* Expr)
            PtrOffs = StackPtr;
        }
 
-    /* Check for known standard functions and inline them if requested */
-    } else if (IS_Get (&InlineStdFuncs) &&
-               (StdFunc = FindStdFunc ((const char*) Expr->Name)) >= 0) {
+    /* Check for known standard functions and inline them */
+    } else if ((StdFunc = FindStdFunc ((const char*) Expr->Name)) >= 0) {
 
        /* Inline this function */
                HandleStdFunc (StdFunc, Func, Expr);