1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Style police: Expand the tabs to spaces!

llvm-svn: 40712
This commit is contained in:
Scott Michel 2007-08-02 02:22:46 +00:00
parent 9a2a58c818
commit 199544367f

View File

@ -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: {