From 93200fb123a0cca815ec50754c2bb3b5e475bf3b Mon Sep 17 00:00:00 2001 From: Luc Van Oostenryck Date: Sat, 15 Aug 2020 06:51:43 +0200 Subject: remove unneeded predeclaration of evaluate_cast() evaluate_cast() is predeclared in the middle of the file but is not used before it's defined. So, remove this unneeded predeclaration. Signed-off-by: Luc Van Oostenryck --- evaluate.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/evaluate.c b/evaluate.c index 63a9390b..447020aa 100644 --- a/evaluate.c +++ b/evaluate.c @@ -2198,8 +2198,6 @@ static int is_promoted(struct expression *expr) } -static struct symbol *evaluate_cast(struct expression *); - static struct symbol *evaluate_type_information(struct expression *expr) { struct symbol *sym = expr->cast_type; -- cgit 1.2.3-korg