aboutsummaryrefslogtreecommitdiff
path: root/test/compound-assignment.qbe
diff options
context:
space:
mode:
Diffstat (limited to 'test/compound-assignment.qbe')
-rw-r--r--test/compound-assignment.qbe18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/compound-assignment.qbe b/test/compound-assignment.qbe
new file mode 100644
index 0000000..35e71a5
--- /dev/null
+++ b/test/compound-assignment.qbe
@@ -0,0 +1,18 @@
+export
+function $f() {
+@start.1
+ %.1 =l alloc4 4
+ %.3 =l alloc8 8
+@body.2
+ %.2 =l add %.1, 0
+ storew 0, %.2
+ %.4 =l add %.3, 0
+ storel %.1, %.4
+ %.5 =l loadl %.3
+ %.6 =l add %.5, 4
+ storel %.6, %.3
+ %.7 =w loadsw %.5
+ %.8 =w add %.7, 1
+ storew %.8, %.5
+ ret
+}