update to coreutils-9.10
several programs are no longer included in default builds: chcon and
runcon (unless SELinux is available; otherwise they are stub binaries
only), kill and uptime (these can be reenabled by adding CONFIGURE_ARGS
--enable-install-program=kill,uptime if needed).
[APINotes] Fix fatal error when using the Type key on fields (#180672)
This fixes a clang crash when importing a module with apinotes that sets
the Type key on a Field:
```
# .---command stderr------------
# | API notes allowed a type on an unknown declaration
# | UNREACHABLE executed at <path>/llvm-project/clang/lib/Sema/SemaAPINotes.cpp:419!
# | PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace, preprocessed source, and associated run script.
# | Stack dump:
# | 0. <path>/llvm-project/clang/test/APINotes/Inputs/Headers/Fields.h:4:12: current parser token ';'
# | 1. <path>/llvm-project/clang/test/APINotes/Inputs/Headers/Fields.h:3:1: parsing struct/union/class body 'IntWrapper'
...
# | #8 0x0000000109540868 clang::Sema::ApplyAPINotesType(clang::Decl*, llvm::StringRef)
# | #9 0x000000010955c6ec applyAPINotesType(clang::Sema&, clang::Decl*, llvm::StringRef, (anonymous namespace)::VersionedInfoMetadata)
```
```yaml
Tags:
- Name: IntWrapper
[24 lines not shown]
Revert "CodeGen: Emit .prefalign directives based on the prefalign attribute."
This reverts commit 6767bfeec5ede8a878792e39aedff053c36854b2.
This breaks the tools/gold/X86/multiple-sections.ll test.
geo/gpstk: add a comment stating this needs to be updated to gnsstk
what we ship is from 2018, and gpstk was renamed to gnsstk in 2021.
If you play with GNSS/GPS data/receivers on OpenBSD and use this, let
ports@ mailing-list know (or better, send a diff to move to gnsstk!),
otherwise this port might just get removed the next time it breaks due
to toolchain changes...
discussed with sthen@
[flang] Implement non-standard RTC intrinsic (#182560)
RTC is supported by classic flang and used in a proprietary HPC
application. I've implemented it as an alias for TIME.
Assisted-by: codex
Add empty string as fallback for category color, and do not render the style in frontend if color is empty, that way fa-tag default style can be used here
[CIR][ARM] Refactor argument handling in `emitAArch64BuiltinExpr` (NFC) (#182105)
Port recent argument-handling refactors from
CodeGen/TargetBuiltins/ARM.cpp into
CIR/CodeGen/CIRGenBuiltinAArch64.cpp to keep the CIR
implementation in sync with Clang CodeGen.
In particular, mirror the updated handling of Sema-only NEON
discriminator arguments and the common argument emission logic
used to populate the `Ops` vector.
This is a mechanical port of the following changes:
* https://github.com/llvm/llvm-project/pull/181974
* https://github.com/llvm/llvm-project/pull/181794
No functional change intended.
Firewall: Categories - Prevent seperator char from being used in names, closes https://github.com/opnsense/core/issues/9845
Usually we would opt for a change in the consumer here, but since some pages (legacy and migrated legacy) use names instead of uuids, we can't fix this differently at the moment.
At the plus side, commas seem to be hardly used until now as this issue has existed for many years already.
I did look briefly in fixing getCategoryColors() to feed both color and labels, which works nicely for the newest pages, but can't be fixed for the just migrated DNAT page for example
(cherry picked from commit 06ecd4c9e221f781a92a98e84dd7b2ea0eb437fb)
py-astroid: updated to 4.1.1
4.1.1
Let UnboundMethodModel inherit from FunctionModel to improve inference of
dunder methods for unbound methods.
Filter Unknown from UnboundMethod and Super special attribute
lookup to prevent placeholder nodes from leaking during inference.