[AggressiveInstCombine] Factor out the beginning of foldSelectSplitCTTZ/CTLZ into common entry point. NFC (#206220)
Both start by matching a select and a eq/ne compare with 0.
Assisted-by: claude
Pull up following revision(s) (requested by riastradh in ticket #1277):
tests/net/if_wg/t_misc.sh: revision 1.17
tests/net/if_wg/t_misc.sh: revision 1.18
sys/net/if_wg.c: revision 1.136
tests/net/if_wg/t_basic.sh: revision 1.7
sys/net/if_wg.c: revision 1.137
tests/net/if_wg/t_basic.sh: revision 1.8
sys/net/if_wg.c: revision 1.138
tests/net/if_wg/t_basic.sh: revision 1.9
tests/net/if_wg/common.sh: revision 1.2
wg(4): Add test case for bad peer public keys.
wg(4) should not crash on an assertion if they are used -- it should
just gracefully accept them, with degraded security, since a peer
that maliciously provides an invalid public key is no worse than a
peer that voluntarily exposes all its plaintext anyway.
PR kern/60106: wg(4) should properly handle invalid or insecure
[45 lines not shown]
Pull up following revision(s) (requested by riastradh in ticket #329):
tests/net/if_wg/t_misc.sh: revision 1.17
tests/net/if_wg/t_misc.sh: revision 1.18
sys/net/if_wg.c: revision 1.136
tests/net/if_wg/t_basic.sh: revision 1.7
sys/net/if_wg.c: revision 1.137
tests/net/if_wg/t_basic.sh: revision 1.8
sys/net/if_wg.c: revision 1.138
tests/net/if_wg/t_basic.sh: revision 1.9
tests/net/if_wg/common.sh: revision 1.2
wg(4): Add test case for bad peer public keys.
wg(4) should not crash on an assertion if they are used -- it should
just gracefully accept them, with degraded security, since a peer
that maliciously provides an invalid public key is no worse than a
peer that voluntarily exposes all its plaintext anyway.
PR kern/60106: wg(4) should properly handle invalid or insecure
[45 lines not shown]
textproc/rumdl: update to 0.2.24
v0.2.24
Added
MD043: report expected and actual headings at first mismatch (#696) (57f0902) - thanks @mkowen1
MD013: add semantic-link-understanding to flag long-URL links in stern mode (#691) (f17e3f7) - thanks @chandlerc
Fixed
MD013: extend standalone-link reflow boundary to blockquotes (74e79f6)
MD013: treat standalone links as paragraph boundaries in reflow (#697) (39ea2b2) - thanks @chandlerc
MD013: associate paragraph reflow fix with all violating lines (#698) (f17be35) - thanks @chandlerc
fix-coordinator: honor inline rumdl-configure-file overrides when applying fixes (c347ab6)
MD013: exempt standalone links with trailing punctuation and wrappers (#694) (d7a3c2e) - thanks @chandlerc
MD013: keep the space after an inline code span before punctuation (#693) (13745db) - thanks @chandlerc
lsp: iterate formatting fixes to a fixpoint so one format pass converges (#695) (78c42ad) - thanks @chandlerc
MD028: make blockquote-merge autofix opt-in by default (cffadef)
MD036: make emphasis-to-heading autofix opt-in by default (9b145a9)
[13 lines not shown]
handbook/disks: Update encrypted swap instructions for geli
Add instructions to initialize the geli swap device first. Also, be a
bit clearer on the /etc/fstab line to add for geli.
While here: fix a typo in the Camellia-CBC algorithm.
PR: 282806
Reviewed by: carlavilla@
Event: Halifax Hackathon 202606
Location: Dalhousie CS Faculty building entrance hallway
Differential Revision: https://reviews.freebsd.org/D57904
devel/feluda: update to 1.14.0
What's Changed
feat(java): add Maven/Gradle license scanning with transitive deps by @anistark in #217
build(deps): bump the maven group across 1 directory with 2 updates by @dependabot[bot] in #219
fix(examples): switch rust-example reqwest to rustls to drop openssl by @anistark in #220
feat(watch): add feluda watch for continuous license scanning by @anistark in #221
feat(ruby): add Ruby/Bundler license scanning by @anistark in #222
build(deps): bump the bundler group across 1 directory with 4 updates by @dependabot[bot] in #223
refactor(licenses): unify license-text detection on shared SPDX engine by @anistark in #224
feat(licenses): add local license-file fallback across analyzers by @anistark in #225
build(deps): bump nokogiri from 1.19.3 to 1.19.4 in /examples/ruby-example in the bundler group across 1 directory by @dependabot[bot] in #227
Reland: [NFC][Support] Implement slash-agnostic path matching in GlobPattern (#206251)
Add a SlashAgnostic option to GlobPattern to allow matching path
separators
(both forward slashes and backslashes) agnostically.
When enabled:
- We conservatively reduce the plain prefix and suffix by treating path
separators as metacharacters. This ensures that path separators are
matched via the slash-agnostic state machine rather than plain string
comparison.
- Brackets containing slashes are adjusted to match both separators.
- Character comparisons in the state machine (matchChar) treat '/' and
'\' as equivalent.
For #149886.
Reland of #202854 incorrectly reverted in #205409.
https://github.com/llvm/llvm-project/pull/202854#issuecomment-4813462549
[3 lines not shown]