[LV] Move isMoreProfitable to LoopVectorizationPlanner.cpp (NFC). (#195269)
isMoreProfitable does not depend on anything in LoopVectorize.cpp, move
it to the recently added LoopVectorizationPlanner.cpp.
PR: https://github.com/llvm/llvm-project/pull/195269
deskutils/gnome-shell-extension-audio-output-switcher: Remove from tree
Marked BROKEN and upstream repo is archived as of Jan 10, 2021
Reference: https://github.com/anduchs/audio-output-switcher
chinese/fcitx-rime: Remove from tree
Marked broken for almost a year and upstream repo is archived as of
May 8, 2024
Reference:
https://github.com/fcitx/fcitx-rime
Add clang warning if fp exception functions are called without appropriate flags/pragmas (#187860)
Fixes https://github.com/llvm/llvm-project/issues/128239
The implementation adds warnings for floating-point exception function
calls (fenv.h) made without enabling floating-point exception behavior
via `-ffp-exception-behavior=maytrap/strict` or `#pragma STDC
FENV_ACCESS ON`. To support recognition of all fenv.h builtins,
`fexcept_t` and `fenv_t` were added as builtin types.