tex-sourceserif{,-doc}: add version 2.0
This package provides Source Serif for LaTeX. It includes both
Type1 and OpenType fonts and selects the latter when using
XeLaTeX or LuaLaTeX. This package used to be called
"sourceserifpro" and contains an alias package for backwards
compatibility.
Reapply "[VPlan] Remove manual region removal when simplifying for VF and UF. (#181252)" (#188589)
This reverts commit e30f9c19464bcf1bf1e9f69b63884fb78ad2d05d.
Re-land, now that the reported crash causing the revert has been fixed
as part of 77fb84889 (#187504).
Original message:
Replace manual region dissolution code in
simplifyBranchConditionForVFAndUF with using general
removeBranchOnConst. simplifyBranchConditionForVFAndUF now just creates
a (BranchOnCond true) or updates BranchOnTwoConds.
The loop then gets automatically removed by running removeBranchOnConst.
This removes a bunch of special logic to handle header phi replacements
and CFG updates. With the new code, there's no restriction on what kind
of header phi recipes the loop contains.
[8 lines not shown]
tex-sourcesans{,-doc}: add version 3.0
This package provides Source Sans for LaTeX. It includes both
Type1 and OpenType fonts and selects the latter when using
XeLaTeX or LuaLaTeX. This package used to be called
"sourcesanspro" and contains an alias package for backwards
compatibility.
[lldb/test] Remove stale arm Linux expectedFailure decorators (NFC)
These tests no longer fail on arm Linux after the frame provider
re-entrancy fixes, so remove the decorators.
XPASS: https://lab.llvm.org/buildbot/#/builders/18/builds/25348
Signed-off-by: Med Ismail Bennani <ismail at bennani.ma>
[llvm-debuginfo-analyzer] Support `S_DEFRANGE_REGISTER_REL_INDIR` (#187531)
#186410 added support for reading `S_DEFRANGE_REGISTER_REL_INDIR` in
LLVM's CodeView. This adds support for printing it in
llvm-debuginfo-analyzer. This record is not (yet) generated by LLVM. It
encodes an indirect location like `S_REGREL32_INDIR` but for a range (so
it's conceptually a child of `S_LOCAL` which only encodes _some_
variable in a function).
---------
Co-authored-by: Javier Lopez-Gomez <javier.lopez.gomez at proton.me>
tex-newcomputermodern{,-doc}: update to 7.1.1
NewCM now supports all diacritics blocks of Unicode with proper anchoring,
at least for Latin, Greek and Cyrillic.
Cyrillic has become more compatible with the Didot design of CM. Older
Cyrillic coming from cmu have been preserved as alternatives.
Phonetic extensions blocks have been added: U+1D00--U1D7F, U+1D80--U+1DBF.
Full Editorial marks support has been added, for scholarly text, critical
editions, manuscript transcription, and linguistic annotation (critical
apparatus, conjectural readings, palaeography, codicology etc).
This includes editorial marks with small caps.
[lldb][Module][NFC] Extract script loading logic into helper (#188712)
Planning on re-using this within the same function. Extracting into
helper makes that slightly more readable.