diff options
Diffstat (limited to 'test/func-array-param.qbe')
-rw-r--r-- | test/func-array-param.qbe | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/func-array-param.qbe b/test/func-array-param.qbe new file mode 100644 index 0000000..84c6d7c --- /dev/null +++ b/test/func-array-param.qbe @@ -0,0 +1,14 @@ +export +function $f(l %.1, l %.3, l %.5, l %.7) { +@start.1 + %.2 =l alloc8 8 + storel %.1, %.2 + %.4 =l alloc8 8 + storel %.3, %.4 + %.6 =l alloc8 8 + storel %.5, %.6 + %.8 =l alloc8 8 + storel %.7, %.8 +@body.2 + ret +} |