[llvm] r340790 - [InstCombine] fix formatting; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 27 16:01:10 PDT 2018
Author: spatel
Date: Mon Aug 27 16:01:10 2018
New Revision: 340790
URL: http://llvm.org/viewvc/llvm-project?rev=340790&view=rev
Log:
[InstCombine] fix formatting; NFC
Modified:
llvm/trunk/lib/Transforms/InstCombine/InstCombineSelect.cpp
Modified: llvm/trunk/lib/Transforms/InstCombine/InstCombineSelect.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/InstCombine/InstCombineSelect.cpp?rev=340790&r1=340789&r2=340790&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/InstCombine/InstCombineSelect.cpp (original)
+++ llvm/trunk/lib/Transforms/InstCombine/InstCombineSelect.cpp Mon Aug 27 16:01:10 2018
@@ -56,7 +56,8 @@ static Value *createMinMax(InstCombiner:
/// Replace a select operand based on an equality comparison with the identity
/// constant of a binop.
-static Instruction *foldSelectBinOpIdentity(SelectInst &Sel, const TargetLibraryInfo &TLI) {
+static Instruction *foldSelectBinOpIdentity(SelectInst &Sel,
+ const TargetLibraryInfo &TLI) {
// The select condition must be an equality compare with a constant operand.
Value *X;
Constant *C;
More information about the llvm-commits
mailing list