summaryrefslogtreecommitdiff
path: root/support/regression/tests/fetchoverlap.c
diff options
context:
space:
mode:
authorXavier ASUS <xavi92psx@gmail.com>2019-10-18 00:31:54 +0200
committerXavier ASUS <xavi92psx@gmail.com>2019-10-18 00:31:54 +0200
commit268a53de823a6750d6256ee1fb1e7707b4b45740 (patch)
tree42c1799a9a82b2f7d9790ee9fe181d72a7274751 /support/regression/tests/fetchoverlap.c
downloadsdcc-gas-268a53de823a6750d6256ee1fb1e7707b4b45740.tar.gz
sdcc-3.9.0 fork implementing GNU assembler syntax
This fork aims to provide better support for stm8-binutils
Diffstat (limited to 'support/regression/tests/fetchoverlap.c')
-rw-r--r--support/regression/tests/fetchoverlap.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/support/regression/tests/fetchoverlap.c b/support/regression/tests/fetchoverlap.c
new file mode 100644
index 0000000..5039b0a
--- /dev/null
+++ b/support/regression/tests/fetchoverlap.c
@@ -0,0 +1,33 @@
+/* Test to reproduce a bug in the z80 compiler where A is used as the
+ left and right of an operand.
+*/
+#include <testfwk.h>
+#include <string.h>
+
+/* In the previous bug, both *p and val in the compare operation were
+ assigned into A due to *p being packed for ACC use into A.
+*/
+int
+verifyBlock(char *p, char val, int len)
+{
+ while (len--) {
+ if (*p++ != val) {
+ return 0;
+ }
+ }
+ return 1;
+}
+
+void
+testOverlap(void)
+{
+ char buf[20];
+ memset(buf, 12, sizeof(buf));
+
+ buf[12] = 13;
+ ASSERT(!verifyBlock(buf, 12, sizeof(buf)));
+
+ buf[12] = 12;
+ ASSERT(verifyBlock(buf, 12, sizeof(buf)));
+}
+