diff options
author | Junmo Park <junmoz.park@samsung.com> | 2016-03-23 01:38:35 +0000 |
---|---|---|
committer | Junmo Park <junmoz.park@samsung.com> | 2016-03-23 01:38:35 +0000 |
commit | 820964e9c611b2a5dd9b5376d4bb0c0c8e6547c3 (patch) | |
tree | 55b47ac517540e5abe16c7ccdfb63bdc38d120bd /llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp | |
parent | d033e1cef5516d77f3712dd6d826153101c91507 (diff) | |
download | bcm5719-llvm-820964e9c611b2a5dd9b5376d4bb0c0c8e6547c3.tar.gz bcm5719-llvm-820964e9c611b2a5dd9b5376d4bb0c0c8e6547c3.zip |
Minor code cleanup. NFC.
llvm-svn: 264124
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp b/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp index d328ebef4f9..7260dd2093d 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp @@ -353,7 +353,7 @@ static Value *foldSelectICmpAndOr(const SelectInst &SI, Value *TrueVal, /// %1 = icmp ne i32 %x, 0 /// %2 = select i1 %1, i32 %0, i32 32 /// \code -/// +/// /// into: /// %0 = tail call i32 @llvm.cttz.i32(i32 %x, i1 false) static Value *foldSelectCttzCtlz(ICmpInst *ICI, Value *TrueVal, Value *FalseVal, |