summaryrefslogtreecommitdiff
path: root/test.lang
diff options
context:
space:
mode:
authorWormHeamer2025-10-27 23:26:44 -0400
committerWormHeamer2025-10-27 23:26:44 -0400
commitdd62801133cddca25d94c9c59f8ca7d0748850c6 (patch)
treedb5210bd773d0c57f1cfe53b303d1a6debdde0b7 /test.lang
parenta2c5243af5bd8482385aeb3395e073ff17f57a0d (diff)
small size optimization on <= 1-node NodeList
Diffstat (limited to 'test.lang')
-rw-r--r--test.lang2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.lang b/test.lang
index 8a000c7..e57f630 100644
--- a/test.lang
+++ b/test.lang
@@ -4,5 +4,5 @@ func main(a, b i64) i64 {
a := b
b := t
}
- return a + b + 3
+ return (a + b + 3) xor b
}