diff options
| author | Micah Villmow <villmow@gmail.com> | 2012-07-31 18:07:43 +0000 |
|---|---|---|
| committer | Micah Villmow <villmow@gmail.com> | 2012-07-31 18:07:43 +0000 |
| commit | b67d7a3a338b572b375de203f7bd5bca67b5d523 (patch) | |
| tree | 1047ada9c79ae55e1e76d5b5b8408246f28c6f1c /llvm/lib/CodeGen/SelectionDAG | |
| parent | a765bac7a148008fa36fef171cec64620326e723 (diff) | |
| download | bcm5719-llvm-b67d7a3a338b572b375de203f7bd5bca67b5d523.tar.gz bcm5719-llvm-b67d7a3a338b572b375de203f7bd5bca67b5d523.zip | |
Conform to LLVM coding style.
llvm-svn: 161061
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 172819369df..f0c50c1ed3c 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -2464,8 +2464,8 @@ TargetLowering::SimplifySetCC(EVT VT, SDValue N0, SDValue N1, // Otherwise, we can't fold it. However, we can simplify it to SETUO/SETO // if it is not already. ISD::CondCode NewCond = UOF == 0 ? ISD::SETO : ISD::SETUO; - if (NewCond != Cond && (DCI.isBeforeLegalizeOps() - || getCondCodeAction(NewCond, N0.getValueType()) == Legal)) + if (NewCond != Cond && (DCI.isBeforeLegalizeOps() || + getCondCodeAction(NewCond, N0.getValueType()) == Legal)) return DAG.getSetCC(dl, VT, N0, N1, NewCond); } |

