diff options
author | Xinliang David Li <davidxl@google.com> | 2017-08-18 23:08:50 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2017-08-18 23:08:50 +0000 |
commit | 0d07f9d68a22f25a29a7b4cb7c49c4b910567200 (patch) | |
tree | 8719bd48d480544d08879a2e6e9038b68edfef58 /llvm/lib/Transforms/Scalar/JumpThreading.cpp | |
parent | 709ffe178e4a7e670b82403fc2d1e5ed0fec3b9e (diff) | |
download | bcm5719-llvm-0d07f9d68a22f25a29a7b4cb7c49c4b910567200.tar.gz bcm5719-llvm-0d07f9d68a22f25a29a7b4cb7c49c4b910567200.zip |
Fix comment /NFC
llvm-svn: 311209
Diffstat (limited to 'llvm/lib/Transforms/Scalar/JumpThreading.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/JumpThreading.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/JumpThreading.cpp b/llvm/lib/Transforms/Scalar/JumpThreading.cpp index 72d2f2472ae..eb18f1e23cb 100644 --- a/llvm/lib/Transforms/Scalar/JumpThreading.cpp +++ b/llvm/lib/Transforms/Scalar/JumpThreading.cpp @@ -146,7 +146,7 @@ JumpThreadingPass::JumpThreadingPass(int T) { // ... // 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) + |