[MIRParser] Reject a one-element fixed-length vector type (#213290)
MIParser accepts `<1 x sN>` and then asserts while building the LLT, so
llc aborts during parsing instead of reporting a parse error:
```
Assertion `!EC.isScalar() && "invalid number of vector elements"' failed.
```
LLT has no one-element fixed-length vector. `getLLTForType`,
`getLLTForMVT` and
`LLT::changeElementCount` all map a one-element `ElementCount` to the
element
type through `LLT::scalarOrVector`, nothing calls `LLT::fixed_vector(1,
...)`,
and no in-tree .mir test uses the syntax. `verifyVectorElementCount`
already rejects 0 and anything above 2^16, so 1 was the remaining hole; it now
gets the same diagnostic instead of aborting the parser.
[3 lines not shown]
[AggressiveInstCombine] Fix terminology in a few comments (NFC) (#222327)
Fix the comments (and a debug print) that say "dominated by trunc"
rather than "post-dominated".
Also fixes a Doxygen syntax (use \p instead of /p) and fix
capitalization in the middle of a sentence.
www/hedgedoc: Add new port
The best platform to write and share markdown.
HedgeDoc (formerly known as CodiMD) is an open-source, web-based,
self-hosted, collaborative markdown editor.
You can use it to easily collaborate on notes, graphs and even
presentations in real-time. All you need to do is to share your
note-link to your co-workers and they're ready to go.
...
This brings back www/hedgedoc which was removed a while back because of
the node.js version on tree.
www/ruby-aws-sdk-kms: update to 1.132.0
1.132.0 (2026-09-11)
* Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's
CHANGELOG.md for details.
www/ruby-aws-sdk-secretsmanager: update to 1.136.0
1.136.0 (2026-09-11)
* Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's
CHANGELOG.md for details.
www/ruby-aws-sdk-core: update to 3.256.0
3.256.0 (2026-09-11)
* Feature - Preserve millisecond precision when serializing Time values on
the request path, instead of truncating to whole seconds.
www/ruby-aws-partitions: update to 1.1286.0
1.1286.0 (2026-09-11)
* Feature - Updated the partitions source data that determines the AWS
service regions and endpoints.
1.1285.0 (2026-09-10)
* Feature - Updated the partitions source data that determines the AWS
service regions and endpoints.
gicv3: don't wait for RWP to clear when unblocking irqs
The RWP bit does not track writes to ISENABLER<n>, only ICENABLER<n>. So
don't bother waiting for it to clear when unblocking IRQs.
This is ok; pic_block_irqs is expected to be synchronous (no IRQs allowed
after the call) but not pic_unblock_irqs (some time can pass before an IRQ
is raised).
net/ruby-winrm: udpate to 2.4.0
2.4.0 (2026-09-10)
What changed
* Fix WinRM shell finalizer for Ruby 3.1+ by safely handling ThreadError
(#354)
* Rename object_id to message_id (#352)
* Replace the unmaintained logging gem with the Ruby standard library Logger
(#358, by @fwininger). Connection#logger is now a stdlib Logger subclass:
the standard API is unchanged, and the one logging-specific call
(add_appenders) still works but logs a deprecation warning (#360)
* Modernize build chain (#357, by @fwininger)
* CI modernization, README fixes
Upgrade notes
If you were calling logging-gem-specific methods (e.g. add_appenders) on
[2 lines not shown]