aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-04-17 06:12:32 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-04-17 06:12:32 +0000
commit3cbdec6dedc906ff84cedfa4fe96e11b9a786c0b (patch)
tree6a3edb9abde502a8ec430ca5d525a3542388bb54 /lib/CodeGen
parentf96d8e143dd936173abd66e2061bc06341ffa30a (diff)
downloadexternal_llvm-3cbdec6dedc906ff84cedfa4fe96e11b9a786c0b.zip
external_llvm-3cbdec6dedc906ff84cedfa4fe96e11b9a786c0b.tar.gz
external_llvm-3cbdec6dedc906ff84cedfa4fe96e11b9a786c0b.tar.bz2
Another 80 col violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101620 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp b/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
index 1cf24d2..7b7f4ed 100644
--- a/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
+++ b/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
@@ -1385,7 +1385,8 @@ void DAGTypeLegalizer::ExpandIntRes_AssertSext(SDNode *N,
if (NVTBits < EVTBits) {
Hi = DAG.getNode(ISD::AssertSext, dl, NVT, Hi,
- DAG.getValueType(EVT::getIntegerVT(*DAG.getContext(), EVTBits - NVTBits)));
+ DAG.getValueType(EVT::getIntegerVT(*DAG.getContext(),
+ EVTBits - NVTBits)));
} else {
Lo = DAG.getNode(ISD::AssertSext, dl, NVT, Lo, DAG.getValueType(EVT));
// The high part replicates the sign bit of Lo, make it explicit.