lang/nll: Update 20250805a => 20260110a
Changelog:
- Added the 5x5font.
- Added the basic color mode.
- Added the integer math functions.
- Much memory reduction measures.
- Many modifications for micro:bit.
- Some minimal corrections.
https://kozos.jp/nlux/download.html
- Improve port-install-* readability.
- Merge INSTALL_DATA in post-install-EXAMPLES-on.
PR: 292355
github: Add more context to pull requests
Add code to fetch and decode CODEOWNERS and automatically @ people in
the review.
Create a new file, .github/path-rules.txt that has a set of paths to
match and specific warnings about that part of the tree. We'll use this
to try to wave off pull requests in certain areas of the tree, as well
as remind people when contrib is involved, etc.
Sponsored by: Netflix
[clang] fix warning (#174587)
```shell
input_line_0:10:30: warning: comparison of integers of different signs: 'int' and 'unsigned long' [-Wsign-compare]
```
[PowerPC] Optimize not equal compares against zero vectors (#150422)
This patch is for special cases involving 0 vectors. During the
comparison of vector operands, current code generation checks with
`vcmpequh (vector compare equal unsigned halfword)` followed by a
negation `xxlnor (VSX Vector Logical NOR XX3-form)`.
This means that for the special case, instead of using `vcmpequh` and
then negating the result, we can directly use `vcmpgtuh (vector compare
greater than unsigned halfword)`.
As a result the negation is avoided since the only condition where this
will be false is for 0 as it is an `unsigned halfword`.
---------
Co-authored-by: himadhith <himadhith.v at ibm.com>
[RISCV][llvm] Support logical comparison codegen for P extension (#174626)
Result type of P extension's comparison instructions is same as operands
and the result bits are all 1s or 0s so we need to set
ZeroOrNegativeOneBooleanContent to make sext(setcc) auto combined.
lang/go module: use TEST_TARGET as default target for MODGO_TEST_TARGET instead of ALL_TARGET
default to ALL_TARGET (keep previous value)
while here, pass TEST_ENV in MODGO_TEST_CMD
ok tb@
[llvm-jitlink] Remove redundant ExecutorAddr constructor calls. NFCI. (#175488)
These ExecutorAddr calls were legacy from pre-ExecutorSymbolDef code.
The getAddress method already returns an ExecutorAddr, so there's no
need for them anymore.
Update to numpy 2.4.1, help/ok sthen, no objection daniel
Tested in bulks on amd64 by me and on i386 by sthen.
Tested on aarch64, amd64, i386 and sparc64.
jca will address riscv64 brekage in tree.