OSDN Git Service

[JumpThreading] Minor comment cleanup. NFC. (test commit)
authorBrian M. Rzycki <brzycki@gmail.com>
Fri, 8 Dec 2017 19:36:32 +0000 (19:36 +0000)
committerBrian M. Rzycki <brzycki@gmail.com>
Fri, 8 Dec 2017 19:36:32 +0000 (19:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@320179 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/JumpThreading.cpp

index e6cab3f..6b0377e 100644 (file)
@@ -188,14 +188,14 @@ JumpThreadingPass::JumpThreadingPass(int T) {
 //
 //  Given that P(cond == true) = P(cond == true | A) * P(A) +
 //                               P(cond == true | B) * P(B)
-//  we get
+//  we get:
 //     P(cond == true ) = P(A) + P(cond == true | B) * P(B)
 //
 //  which gives us:
 //     P(A) is less than P(cond == true), i.e.
 //     P(t == true) <= P(cond == true)
 //
-//  In other words, if we know P(cond == true) is unlikely, we know 
+//  In other words, if we know P(cond == true) is unlikely, we know
 //  that P(t == true) is also unlikely.
 //
 static void updatePredecessorProfileMetadata(PHINode *PN, BasicBlock *BB) {