From 0eae123d9eca73b9bc6642b06b5fba564d366595 Mon Sep 17 00:00:00 2001 From: "Brian M. Rzycki" Date: Fri, 8 Dec 2017 19:36:32 +0000 Subject: [JumpThreading] Minor comment cleanup. NFC. (test commit) llvm-svn: 320179 --- llvm/lib/Transforms/Scalar/JumpThreading.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib') diff --git a/llvm/lib/Transforms/Scalar/JumpThreading.cpp b/llvm/lib/Transforms/Scalar/JumpThreading.cpp index e6cab3f34cf..6b0377e0ecb 100644 --- a/llvm/lib/Transforms/Scalar/JumpThreading.cpp +++ b/llvm/lib/Transforms/Scalar/JumpThreading.cpp @@ -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) { -- cgit v1.2.3