| Age | Commit message (Expand) | Author |
| 2022-05-19 | x64: re-enable behavior tests | Jakub Konka |
| 2022-05-18 | wasm: enable 128bit integer behavior tests | Luuk de Gram |
| 2022-05-16 | aarch64: sub_with_overflow should always track V flag | Jakub Konka |
| 2022-05-11 | Merge pull request #11628 from ziglang/x64-shifts | Jakub Konka |
| 2022-05-10 | Sema: comptime float negation supports negative zero | Andrew Kelley |
| 2022-05-10 | x64: fix binary not implementation | Jakub Konka |
| 2022-05-10 | x64: enable additional math test | Jakub Konka |
| 2022-05-10 | x64: implement shl with overflow for non-pow-2 | Jakub Konka |
| 2022-05-10 | x64: implement shl_with_overflow for powers of two | Jakub Konka |
| 2022-05-10 | x64: implement missing bits in add_with_overflow and sub_with_overflow | Jakub Konka |
| 2022-05-10 | x64: implement shl_exact and shr_exact | Jakub Konka |
| 2022-05-09 | x64: add naive impl of shr | Jakub Konka |
| 2022-05-07 | stage2: Split `@mulWithOverflow` tests | Luuk de Gram |
| 2022-05-05 | test: pass extended mul_with_overflow tests on x64 | Jakub Konka |
| 2022-05-05 | test: test bitwidths between 1...8 and 8...16 for mul_with_overflow | Jakub Konka |
| 2022-05-05 | test: test more int sizes for @mulWithOverflow builtin | Jakub Konka |
| 2022-05-05 | aarch64: implement mul_with_overflow for <= 32bit ints | Jakub Konka |
| 2022-05-05 | stage2 AArch64: implement shl_with_overflow | joachimschmidt557 |
| 2022-05-05 | stage2 AArch64: initial implementation of {add,sub}_with_overflow | joachimschmidt557 |
| 2022-05-03 | temporary fix for stage2/stage1 f128 rounding discrepency | Marc Tiehuis |
| 2022-04-27 | stage1: fix i386-windows f80 sizeof/alignof | Andrew Kelley |
| 2022-04-27 | disable failing behavior test | Andrew Kelley |
| 2022-04-27 | enable newly passing behavior tests | Andrew Kelley |
| 2022-04-27 | disable failing behavior tests | Andrew Kelley |
| 2022-04-27 | compiler-rt: math functions reorg | Andrew Kelley |
| 2022-04-19 | stage2 AArch64: fix shl, shr, shl_exact, shr_exact | joachimschmidt557 |
| 2022-04-19 | stage2 AArch64: implement addwrap, subwrap, mulwrap | joachimschmidt557 |
| 2022-04-12 | Skip `@rem`/`@mod` tests on stage2, due to missing `fmodl` implementation | Cody Tapscott |
| 2022-04-02 | wasm: Enable passing behavior tests | Luuk de Gram |
| 2022-04-01 | stage2 ARM: implement mul_with_overflow for ints <= 16 bits | joachimschmidt557 |
| 2022-04-01 | stage2 ARM: implement shl_with_overflow for ints <= 32 bits | joachimschmidt557 |
| 2022-04-01 | stage2 ARM: implement add/sub_with_overflow for ints < 32 bits | joachimschmidt557 |
| 2022-04-01 | x64: implement add/sub with wrapping and xor op | Jakub Konka |
| 2022-03-30 | replace other uses of `std.meta.Vector` with `@Vector` (#11346) | Meghan |
| 2022-03-30 | x64: redo @mulWithOverflow using rax/rdx based multiplication | Jakub Konka |
| 2022-03-28 | x64: partially fix genImul, enable overflow tests | Jakub Konka |
| 2022-03-27 | wasm: Enable overflow behavior tests | Luuk de Gram |
| 2022-03-23 | stage2: enable some passing array & vector tests | William Sengir |
| 2022-03-19 | CBE: implement mod, divFloor, divTrunc | Daniele Cocca |
| 2022-03-17 | CBE: enable more tests that are currently passing | Daniele Cocca |
| 2022-03-17 | Merge pull request #11192 from joachimschmidt557/stage2-arm | Joachim Schmidt |
| 2022-03-16 | stage2: bit_not on u0 is always 0 | Mitchell Hashimoto |
| 2022-03-16 | stage2 ARM: implement addwrap, subwrap, mulwrap | joachimschmidt557 |
| 2022-03-16 | stage2 ARM: fix shl for ints with bits < 32 | joachimschmidt557 |
| 2022-03-16 | stage2 ARM: fix bitwise negation of ints with bits < 32 | joachimschmidt557 |
| 2022-03-14 | Merge pull request #11143 from jmc-88/cbe | Andrew Kelley |
| 2022-03-14 | CBE: split {clz,ctz,mod,popCount,byteSwap,bitReverse} by type | Daniele Cocca |
| 2022-03-14 | Sema: improve lowering of stores to bitcasted vector pointers | Andrew Kelley |
| 2022-03-13 | stage2 AArch64: enable mul for ints with <= 64 bits | joachimschmidt557 |
| 2022-03-13 | stage2 AArch64: Implement bit shifting with immediate operands | joachimschmidt557 |