[Attributor][NFC] Improve debug message
authorJohannes Doerfert <johannes@jdoerfert.de>
Tue, 11 Jul 2023 04:03:06 +0000 (21:03 -0700)
committerJohannes Doerfert <johannes@jdoerfert.de>
Mon, 17 Jul 2023 17:43:22 +0000 (10:43 -0700)
llvm/lib/Transforms/IPO/AttributorAttributes.cpp

index 12242ef..dc944df 100644 (file)
@@ -9562,8 +9562,10 @@ struct AAValueConstantRangeFloating : AAValueConstantRangeImpl {
     else
       T.unionAssumed(ConstantRange(/* BitWidth */ 1, /* isFullSet */ true));
 
-    LLVM_DEBUG(dbgs() << "[AAValueConstantRange] " << *CmpI << " " << LHSAA
-                      << " " << RHSAA << "\n");
+    LLVM_DEBUG(dbgs() << "[AAValueConstantRange] " << *CmpI << " after "
+                      << (MustTrue ? "true" : (MustFalse ? "false" : "unknown"))
+                      << ": " << T << "\n\t" << *LHSAA << "\t<op>\n\t"
+                      << *RHSAA);
 
     // TODO: Track a known state too.
     return T.isValidState();