aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/patches
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2022-09-06 08:08:03 -0400
committerGitHub <noreply@github.com>2022-09-06 08:08:03 -0400
commit9d0c2dd0a8e97c161a3655856d4cf231e8a6256c (patch)
treef353f775b1ab4dcb43cccc2de93aef45c86e4123 /patches
parent6f284c251ecb6026944e263e68672472651526e6 (diff)
parentb69a297e3234c321c44c4c409acee78f52d2572a (diff)
Merge pull request #134 from BlueAlmost/bitreverse_comment
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);