From 1139df03b0edbf08deb9aa26ade3776be3c1e180 Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 11 Jun 2023 19:29:30 +0200 Subject: remove RPARAM, add Oparam, lower args/rets to abi regs in abi0 --- test/test3.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/test3.c') diff --git a/test/test3.c b/test/test3.c index e6599bb..35e5e8b 100644 --- a/test/test3.c +++ b/test/test3.c @@ -19,5 +19,10 @@ double ff(double x, double y) return x + y + .5; } +void testss() { + extern struct { long x,y; } aa(); + long x = aa().x; +} + long fma(long x, long y) { return x + (y <<1) - 2147483648;} -- cgit v1.2.3