From 0bb7273d42117585aeeda4610267158fcea494a6 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sat, 4 Apr 2020 19:10:47 -0700 Subject: 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). --- test/array-address.c | 1 + test/array-address.qbe | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 test/array-address.c create mode 100644 test/array-address.qbe (limited to 'test') 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 } -- cgit v1.2.3