[llvm] [FMF] Set all bits if needed when setting individual flags. (PR #131321)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 14 04:51:11 PDT 2025


================
@@ -75,24 +77,31 @@ class FastMathFlags {
   /// Flag setters
   void setAllowReassoc(bool B = true) {
     Flags = (Flags & ~AllowReassoc) | B * AllowReassoc;
+    setAllBitsIfNeeded();
----------------
arsenm wrote:

Wouldn't it be easier to fix all to check Flags & Fullmask == FullMask? 

https://github.com/llvm/llvm-project/pull/131321


More information about the llvm-commits mailing list