aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-04-16 17:57:59 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-04-16 17:57:59 +0000
commit8028064fa56a65bd94ba104ee4a173c1256e9800 (patch)
tree8d6316a905a9a229e1a4a51617f140cd504163b3 /lib
parent0d3e7be65f6ad6ec6c49fb8f99f88d0c0dd82b66 (diff)
downloadexternal_llvm-8028064fa56a65bd94ba104ee4a173c1256e9800.zip
external_llvm-8028064fa56a65bd94ba104ee4a173c1256e9800.tar.gz
external_llvm-8028064fa56a65bd94ba104ee4a173c1256e9800.tar.bz2
80 col.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101500 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp b/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
index 124d3aa..a847008 100644
--- a/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
+++ b/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
@@ -465,7 +465,7 @@ SDValue DAGTypeLegalizer::PromoteIntRes_SETCC(SDNode *N) {
SDValue DAGTypeLegalizer::PromoteIntRes_SHL(SDNode *N) {
return DAG.getNode(ISD::SHL, N->getDebugLoc(),
- TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0)),
+ TLI.getTypeToTransformTo(*DAG.getContext(), N->getValueType(0)),
GetPromotedInteger(N->getOperand(0)), N->getOperand(1));
}