diff options
| author | 2023-06-11 19:29:30 +0200 | |
|---|---|---|
| committer | 2023-06-11 19:29:30 +0200 | |
| commit | 1139df03b0edbf08deb9aa26ade3776be3c1e180 (patch) | |
| tree | 0777ca13c5ae2e12064758f7fd20c78b80fa366b /test/test3.c | |
| parent | 5ac04c7a3ec11d939a3773876b6924e1ae39f1a5 (diff) | |
remove RPARAM, add Oparam, lower args/rets to abi regs in abi0
Diffstat (limited to 'test/test3.c')
| -rw-r--r-- | test/test3.c | 5 |
1 files changed, 5 insertions, 0 deletions
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;} |