From bd5d5b738569f3159c9c7f5632e68c55db105a93 Mon Sep 17 00:00:00 2001 From: acqn Date: Sat, 13 Mar 2021 14:31:23 +0800 Subject: [PATCH] Removed the prototype of evalexpr() that no longer exists. --- src/cc65/expr.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/cc65/expr.h b/src/cc65/expr.h index 71dbe8e0d..02f9f7a5f 100644 --- a/src/cc65/expr.h +++ b/src/cc65/expr.h @@ -74,13 +74,6 @@ void Store (ExprDesc* Expr, const Type* StoreType); ** is NULL, use lval->Type instead. */ -int evalexpr (unsigned flags, void (*Func) (ExprDesc*), ExprDesc* Expr); -/* Will evaluate an expression via the given function. If the result is a -** constant, 0 is returned and the value is put in the Expr struct. If the -** result is not constant, LoadExpr is called to bring the value into the -** primary register and 1 is returned. -*/ - void Expression0 (ExprDesc* Expr); /* Evaluate an expression via hie0 and put the result into the primary register. ** The expression is completely evaluated and all side effects complete.