diff options
| author | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2018-06-04 14:54:53 +0000 | 
|---|---|---|
| committer | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2018-06-04 14:54:53 +0000 | 
| commit | 623eb54361e8e8f675439b162f70a703e782dd00 (patch) | |
| tree | 69d8f09c683854b85c802f1d81ab3791982f919f /llvm/lib/CodeGen/SelectionDAG | |
| parent | f029646fa38efe81885287499acdc3338639a15a (diff) | |
| download | bcm5719-llvm-623eb54361e8e8f675439b162f70a703e782dd00.tar.gz bcm5719-llvm-623eb54361e8e8f675439b162f70a703e782dd00.zip | |
[SelectionDAG] Add missing closing parentheses in comments, NFC
llvm-svn: 333907
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index c1b948fd39c..13d71e08bc3 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -3518,9 +3518,9 @@ SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {            ShOp = SDValue();        } -      // (AND (shuf (A, C), shuf (B, C)) -> shuf (AND (A, B), C) -      // (OR  (shuf (A, C), shuf (B, C)) -> shuf (OR  (A, B), C) -      // (XOR (shuf (A, C), shuf (B, C)) -> shuf (XOR (A, B), V_0) +      // (AND (shuf (A, C), shuf (B, C))) -> shuf (AND (A, B), C) +      // (OR  (shuf (A, C), shuf (B, C))) -> shuf (OR  (A, B), C) +      // (XOR (shuf (A, C), shuf (B, C))) -> shuf (XOR (A, B), V_0)        if (N0.getOperand(1) == N1.getOperand(1) && ShOp.getNode()) {          SDValue NewNode = DAG.getNode(N->getOpcode(), SDLoc(N), VT,                                        N0->getOperand(0), N1->getOperand(0)); @@ -3539,9 +3539,9 @@ SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {            ShOp = SDValue();        } -      // (AND (shuf (C, A), shuf (C, B)) -> shuf (C, AND (A, B)) -      // (OR  (shuf (C, A), shuf (C, B)) -> shuf (C, OR  (A, B)) -      // (XOR (shuf (C, A), shuf (C, B)) -> shuf (V_0, XOR (A, B)) +      // (AND (shuf (C, A), shuf (C, B))) -> shuf (C, AND (A, B)) +      // (OR  (shuf (C, A), shuf (C, B))) -> shuf (C, OR  (A, B)) +      // (XOR (shuf (C, A), shuf (C, B))) -> shuf (V_0, XOR (A, B))        if (N0->getOperand(0) == N1->getOperand(0) && ShOp.getNode()) {          SDValue NewNode = DAG.getNode(N->getOpcode(), SDLoc(N), VT,                                        N0->getOperand(1), N1->getOperand(1)); | 

