diff options
| author | Richard Osborne <richard@xmos.com> | 2011-09-23 16:28:10 +0000 |
|---|---|---|
| committer | Richard Osborne <richard@xmos.com> | 2011-09-23 16:28:10 +0000 |
| commit | 0353dab90ec502b02cbf2cee845e07d51627248b (patch) | |
| tree | ae5048e94f8e47129885e1961b88ec81e1d9a4c7 /lib/Target/XCore/XCoreISelLowering.cpp | |
| parent | 04aa4aee8901faf750120ac4571bee74e5a81a90 (diff) | |
Fix 80 column violations.
Original patch by Liu.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140385 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/XCore/XCoreISelLowering.cpp')
| -rw-r--r-- | lib/Target/XCore/XCoreISelLowering.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/XCore/XCoreISelLowering.cpp b/lib/Target/XCore/XCoreISelLowering.cpp index 42dfdb7355..2afe0e35af 100644 --- a/lib/Target/XCore/XCoreISelLowering.cpp +++ b/lib/Target/XCore/XCoreISelLowering.cpp @@ -1415,7 +1415,8 @@ SDValue XCoreTargetLowering::PerformDAGCombine(SDNode *N, // operands are constant canonicalize smallest to RHS. if ((N0C && !N1C) || (N0C && N1C && N0C->getZExtValue() < N1C->getZExtValue())) - return DAG.getNode(XCoreISD::LMUL, dl, DAG.getVTList(VT, VT), N1, N0, N2, N3); + return DAG.getNode(XCoreISD::LMUL, dl, DAG.getVTList(VT, VT), + N1, N0, N2, N3); // lmul(x, 0, a, b) if (N1C && N1C->isNullValue()) { |
