diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-02-02 18:20:45 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-02-02 18:20:45 +0000 |
commit | ecefe5a81fd01922185afdd4f47e8ff231e34a81 (patch) | |
tree | ccec2ae513d2b045e7269505776ed1e6300a0f89 /llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp | |
parent | 7a2a5ce0589f8ac9b5c6ca8e7bf202061f7565aa (diff) | |
download | bcm5719-llvm-ecefe5a81fd01922185afdd4f47e8ff231e34a81.tar.gz bcm5719-llvm-ecefe5a81fd01922185afdd4f47e8ff231e34a81.zip |
Fix Clang-tidy readability-redundant-control-flow warnings; other minor fixes.
Differential revision: http://reviews.llvm.org/D16793
llvm-svn: 259539
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp b/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp index be31f984db7..e7e3f821b9a 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp @@ -321,8 +321,6 @@ void FAddendCoef::operator*=(const FAddendCoef &That) { APFloat::rmNearestTiesToEven); else F0.multiply(That.getFpVal(), APFloat::rmNearestTiesToEven); - - return; } void FAddendCoef::negate() { |