From 87d0d889863d6351d19d4d34c755aee2efe2dbad Mon Sep 17 00:00:00 2001 From: cuz Date: Fri, 4 Jun 2004 14:37:50 +0000 Subject: [PATCH] Check the InlineStdFuncs flag later git-svn-id: svn://svn.cc65.org/cc65/trunk@3086 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/expr.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/cc65/expr.c b/src/cc65/expr.c index c89cfd023..23f148e53 100644 --- a/src/cc65/expr.c +++ b/src/cc65/expr.c @@ -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); -- 2.39.5