aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorScott Michel <scottm@aero.org>2007-08-02 02:22:46 +0000
committerScott Michel <scottm@aero.org>2007-08-02 02:22:46 +0000
commitbc62b41039d4838a09a57e3b4b6eaed98020cf67 (patch)
tree3a847a85ee933f97a4de03e1098a529ab635b850 /lib/CodeGen
parent6f9fad55b06f2ed42b16cc1024205336c19b6128 (diff)
downloadexternal_llvm-bc62b41039d4838a09a57e3b4b6eaed98020cf67.zip
external_llvm-bc62b41039d4838a09a57e3b4b6eaed98020cf67.tar.gz
external_llvm-bc62b41039d4838a09a57e3b4b6eaed98020cf67.tar.bz2
Style police: Expand the tabs to spaces!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40712 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/SelectionDAG/LegalizeDAG.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
index b25670c..2745356 100644
--- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
+++ b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
@@ -2879,11 +2879,11 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
case TargetLowering::Legal:
Result = DAG.UpdateNodeOperands(Result, Tmp1);
if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
- TargetLowering::Custom) {
- Tmp1 = TLI.LowerOperation(Result, DAG);
- if (Tmp1.Val) {
- Result = Tmp1;
- }
+ TargetLowering::Custom) {
+ Tmp1 = TLI.LowerOperation(Result, DAG);
+ if (Tmp1.Val) {
+ Result = Tmp1;
+ }
}
break;
case TargetLowering::Promote: {