diff options
author | Sanjay Patel <spatel@rotateright.com> | 2018-08-27 23:01:10 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2018-08-27 23:01:10 +0000 |
commit | c615910be5759794d45917eb2d0a6165253c13dd (patch) | |
tree | fb618c747afa506c898b543933bbacaff22cfe33 /llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp | |
parent | e23e8a4f534200bd7b07fc0e6a09ffd49814f956 (diff) | |
download | bcm5719-llvm-c615910be5759794d45917eb2d0a6165253c13dd.tar.gz bcm5719-llvm-c615910be5759794d45917eb2d0a6165253c13dd.zip |
[InstCombine] fix formatting; NFC
llvm-svn: 340790
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp b/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp index 07a25c45118..0313cc9bb06 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp @@ -56,7 +56,8 @@ static Value *createMinMax(InstCombiner::BuilderTy &Builder, /// 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; |