diff options
author | Dave Gauer <ratfactor@gmail.com> | 2022-09-06 08:08:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-06 08:08:03 -0400 |
commit | 687ff026956e024353afdfd3d9588aacb4454616 (patch) | |
tree | f353f775b1ab4dcb43cccc2de93aef45c86e4123 /patches | |
parent | 971c76d4496c763e28d16560a1d52a13b3940688 (diff) | |
parent | 2c13601de07be5c980acb1c127f972f11acbdc9b (diff) | |
download | ziglings-687ff026956e024353afdfd3d9588aacb4454616.tar.gz ziglings-687ff026956e024353afdfd3d9588aacb4454616.tar.bz2 ziglings-687ff026956e024353afdfd3d9588aacb4454616.tar.xz ziglings-687ff026956e024353afdfd3d9588aacb4454616.zip |
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.patch | 4 |
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); |