aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2020-04-04 19:10:47 -0700
committerMichael Forney <mforney@mforney.org>2020-04-04 19:10:47 -0700
commit0bb7273d42117585aeeda4610267158fcea494a6 (patch)
tree096d2b3c4afec138b471664441134347e42a08d5 /test
parentea8f0ebd571931c37aadeab0c2c57b271dee0e41 (diff)
downloadcproc-0bb7273d42117585aeeda4610267158fcea494a6.tar.xz
expr: Fix type of '&' operator applied to array
It should be a pointer to the array, not to the first element (as it would after implicit conversion without the '&' operator).
Diffstat (limited to 'test')
-rw-r--r--test/array-address.c1
-rw-r--r--test/array-address.qbe2
2 files changed, 3 insertions, 0 deletions
diff --git a/test/array-address.c b/test/array-address.c
new file mode 100644
index 0000000..22ebe4b
--- /dev/null
+++ b/test/array-address.c
@@ -0,0 +1 @@
+int x[2], y = sizeof(*&x);
diff --git a/test/array-address.qbe b/test/array-address.qbe
new file mode 100644
index 0000000..d32d555
--- /dev/null
+++ b/test/array-address.qbe
@@ -0,0 +1,2 @@
+export data $y = align 4 { w 8, }
+export data $x = align 4 { z 8 }