From 4b74d8aa68fca6692782a47277e1dade5a2b039e Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Tue, 30 Mar 2021 01:50:25 -0700 Subject: Add struct passing call test The struct-passing test checks for function definitions with struct arguments, but we were missing a test for function calls with struct arguments. --- test/struct-passing-call.c | 8 ++++++++ test/struct-passing-call.qbe | 9 +++++++++ 2 files changed, 17 insertions(+) create mode 100644 test/struct-passing-call.c create mode 100644 test/struct-passing-call.qbe (limited to 'test') diff --git a/test/struct-passing-call.c b/test/struct-passing-call.c new file mode 100644 index 0000000..2ad746e --- /dev/null +++ b/test/struct-passing-call.c @@ -0,0 +1,8 @@ +struct s { + int x; +} s; + +void f(struct s); +void g(void) { + f(s); +} diff --git a/test/struct-passing-call.qbe b/test/struct-passing-call.qbe new file mode 100644 index 0000000..1c5e623 --- /dev/null +++ b/test/struct-passing-call.qbe @@ -0,0 +1,9 @@ +type :s.1 = { w, } +export +function $g() { +@start.1 +@body.2 + call $f(:s.1 $s) + ret +} +export data $s = align 4 { z 4 } -- cgit v1.2.3