aboutsummaryrefslogtreecommitdiff
path: root/patches
diff options
context:
space:
mode:
authorJames LeBlanc <james.p.leblanc@gmail.com>2022-09-03 10:56:25 +0200
committerJames LeBlanc <james.p.leblanc@gmail.com>2022-09-03 10:56:25 +0200
commit2c13601de07be5c980acb1c127f972f11acbdc9b (patch)
treeebbac0f1836820173342413d666bbcc5baafe3ea /patches
parenta723a4c1df3276b31733e13b16a33e859c831188 (diff)
downloadziglings-2c13601de07be5c980acb1c127f972f11acbdc9b.tar.gz
ziglings-2c13601de07be5c980acb1c127f972f11acbdc9b.tar.bz2
ziglings-2c13601de07be5c980acb1c127f972f11acbdc9b.tar.xz
ziglings-2c13601de07be5c980acb1c127f972f11acbdc9b.zip
corrected @bitReverse for only 1 arg, instead of 2 args
Diffstat (limited to 'patches')
-rw-r--r--patches/patches/064_builtins.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/patches/064_builtins.patch b/patches/patches/064_builtins.patch
index 06fa735..ebe313d 100644
--- a/patches/patches/064_builtins.patch
+++ b/patches/patches/064_builtins.patch
@@ -3,6 +3,6 @@
---
> const expected_result: u8 = 0b00010010;
88c88
-< const tupni: u8 = @bitReverse(input);
+< const tupni: u8 = @bitReverse(input, tupni);
---
-> const tupni: u8 = @bitReverse(u8, input);
+> const tupni: u8 = @bitReverse(input);