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) && \