diff options
author | Xin Tong <trent.xin.tong@gmail.com> | 2018-04-13 04:35:38 +0000 |
---|---|---|
committer | Xin Tong <trent.xin.tong@gmail.com> | 2018-04-13 04:35:38 +0000 |
commit | d83c883d297b5a2bc407c20527cd4e5a1ee6e39e (patch) | |
tree | 69b1ac26e807d779493a630d2497998c4559a357 /llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp | |
parent | 6fc7b2119b9ae2f34b8aee6ed83b98bef3537429 (diff) | |
download | bcm5719-llvm-d83c883d297b5a2bc407c20527cd4e5a1ee6e39e.tar.gz bcm5719-llvm-d83c883d297b5a2bc407c20527cd4e5a1ee6e39e.zip |
[CallSiteSplit] Fix comment. NFC
llvm-svn: 329987
Diffstat (limited to 'llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp b/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp index 2a29c08a655..ce1c83d29aa 100644 --- a/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp +++ b/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp @@ -144,7 +144,7 @@ static void recordCondition(CallSite CS, BasicBlock *From, BasicBlock *To, } /// Record ICmp conditions relevant to any argument in CS following Pred's -/// single successors. If there are conflicting conditions along a path, like +/// single predecessors. If there are conflicting conditions along a path, like /// x == 1 and x == 0, the first condition will be used. static void recordConditions(CallSite CS, BasicBlock *Pred, ConditionsTy &Conditions) { |