From 5784264d0eec915ccf5e7a930ee85e36e3a12923 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Tue, 12 Feb 2019 14:05:30 -0800 Subject: Fix union sizes and member offsets --- tests/union.c | 4 ++++ tests/union.qbe | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 tests/union.c create mode 100644 tests/union.qbe (limited to 'tests') 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, } -- cgit v1.2.3