[llvm] r311209 - Fix comment /NFC

Xinliang David Li via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 18 16:08:50 PDT 2017


Author: davidxl
Date: Fri Aug 18 16:08:50 2017
New Revision: 311209

URL: http://llvm.org/viewvc/llvm-project?rev=311209&view=rev
Log:
Fix comment /NFC

Modified:
    llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp?rev=311209&r1=311208&r2=311209&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/JumpThreading.cpp Fri Aug 18 16:08:50 2017
@@ -146,7 +146,7 @@ JumpThreadingPass::JumpThreadingPass(int
 //    ...  // P(cond == true) = 1%
 //  }
 //
-//  Here we know that when block A is taken, c must be true, which means
+//  Here we know that when block A is taken, cond must be true, which means
 //      P(cond == true | A) = 1
 //
 //  Given that P(cond == true) = P(cond == true | A) * P(A) +




More information about the llvm-commits mailing list