From 531e11767a51c8c09119efc337fa2688030b6f8a Mon Sep 17 00:00:00 2001 From: Alexander Fritsch Date: Thu, 9 Oct 2025 13:04:30 +0200 Subject: [PATCH] Make it compileable with bebbo's gcc 6.5 --- src/branchopt.c | 3 +-- src/branchopt2.c | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/branchopt.c b/src/branchopt.c index 52c6266..f633d4e 100755 --- a/src/branchopt.c +++ b/src/branchopt.c @@ -6,7 +6,6 @@ */ #include "popt.h" -#include #define LAB_TOUCHED 0x80 #define OP_BRANCH(x) (((x)->opcode==BRA || (x)->opcode==JMP) && \ @@ -15,7 +14,7 @@ /*. * cnb() - optimize bcc followed by bra. return next inst. - * + */ /* * ... ..__ * b lbl2 => b lbl1 diff --git a/src/branchopt2.c b/src/branchopt2.c index f0413c7..179137d 100755 --- a/src/branchopt2.c +++ b/src/branchopt2.c @@ -6,7 +6,6 @@ */ #include "popt.h" -#include #define LAB_TOUCHED 0x80 #define OP_BRANCH(x) (((x)->opcode==BRA || (x)->opcode==JMP) && \