aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-02-12 14:05:30 -0800
committerMichael Forney <mforney@mforney.org>2019-02-12 14:06:16 -0800
commit5784264d0eec915ccf5e7a930ee85e36e3a12923 (patch)
tree2246f9187a9198faa2000bce208a382a1642794d /tests
parent5e8fa8708b65f633c011d3252d8372236acf9a7e (diff)
downloadcproc-5784264d0eec915ccf5e7a930ee85e36e3a12923.tar.xz
Fix union sizes and member offsets
Diffstat (limited to 'tests')
-rw-r--r--tests/union.c4
-rw-r--r--tests/union.qbe2
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/union.c b/tests/union.c
new file mode 100644
index 0000000..9b4e5f9
--- /dev/null
+++ b/tests/union.c
@@ -0,0 +1,4 @@
+union {
+ int x;
+ double y;
+} a = {.x = 5}, b = {.y = 7.5};
diff --git a/tests/union.qbe b/tests/union.qbe
new file mode 100644
index 0000000..adbda57
--- /dev/null
+++ b/tests/union.qbe
@@ -0,0 +1,2 @@
+export data $a = align 8 { w 5, z 4 }
+export data $b = align 8 { d d_0x1.ep+2, }