diff options
author | Dave Gauer <ratfactor@gmail.com> | 2022-07-31 09:34:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-31 09:34:36 -0400 |
commit | 4a89f2cc517187e3c97b15ae7043cb299e88a43f (patch) | |
tree | 890e651910d05d29845ce1207700de487b2da986 /patches | |
parent | 1a89e4ebf13756541916cf5ed47866a3dd7e74df (diff) | |
parent | 7e797fce520f1f190f971592acce082cc7ee102a (diff) | |
download | ziglings-4a89f2cc517187e3c97b15ae7043cb299e88a43f.tar.gz ziglings-4a89f2cc517187e3c97b15ae7043cb299e88a43f.tar.bz2 ziglings-4a89f2cc517187e3c97b15ae7043cb299e88a43f.tar.xz ziglings-4a89f2cc517187e3c97b15ae7043cb299e88a43f.zip |
Merge pull request #101 from DerTee/064_builtins_overflow_clarification
064_builtins: clarify @addWithOverflow explanation
Diffstat (limited to 'patches')
-rw-r--r-- | patches/patches/064_builtins.patch | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/patches/patches/064_builtins.patch b/patches/patches/064_builtins.patch index 644128b..8b5ea0a 100644 --- a/patches/patches/064_builtins.patch +++ b/patches/patches/064_builtins.patch @@ -1,4 +1,6 @@ 72c72 -< const tupni: u8 = @bitReverse(input); ---- -> const tupni: u8 = @bitReverse(u8, input); +- const expected_result: u8 = ???; ++ const expected_result: u8 = 0b00010010; +88c88 +- const tupni: u8 = @bitReverse(input); ++ const tupni: u8 = @bitReverse(u8, input); |