diff --git a/test/misc/Makefile b/test/misc/Makefile index b21384b68..e48d86e30 100644 --- a/test/misc/Makefile +++ b/test/misc/Makefile @@ -63,12 +63,6 @@ $(DIFF): ../isequal.c | $(WORKDIR) define PRG_template -# should compile, but gives an error -$(WORKDIR)/bug250.$1.$2.prg: bug250.c | $(WORKDIR) - @echo "FIXME: " $$@ "currently does not compile." - $(if $(QUIET),echo misc/bug250.$1.$2.prg) - $(NOT) $(CL65) -t sim$2 -$1 -o $$@ $$< $(NULLERR) - # should compile, but gives an error $(WORKDIR)/bug760.$1.$2.prg: bug760.c | $(WORKDIR) @echo "FIXME: " $$@ "currently does not compile." diff --git a/test/misc/bug250.c b/test/misc/bug250.c deleted file mode 100644 index 60f3c633d..000000000 --- a/test/misc/bug250.c +++ /dev/null @@ -1,13 +0,0 @@ -/* bug #250 - Array size compile-time optimization stops halfway */ - -#include - -#define LZO_MAX(a,b) ((a) >= (b) ? (a) : (b)) -unsigned char c[2*4]; -unsigned char b[2*LZO_MAX(8,sizeof(int))]; // this will not compile - -int main(void) -{ - /* FIXME: add some runtime check */ - return EXIT_SUCCESS; -}