Deleted Added
full compact
MSP430ISelDAGToDAG.cpp (249423) MSP430ISelDAGToDAG.cpp (255804)
1//===-- MSP430ISelDAGToDAG.cpp - A dag to dag inst selector for MSP430 ----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 380 unchanged lines hidden (view full) ---

389 DEBUG(Node->dump(CurDAG));
390 DEBUG(errs() << "\n");
391
392 // If we have a custom node, we already have selected!
393 if (Node->isMachineOpcode()) {
394 DEBUG(errs() << "== ";
395 Node->dump(CurDAG);
396 errs() << "\n");
1//===-- MSP430ISelDAGToDAG.cpp - A dag to dag inst selector for MSP430 ----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 380 unchanged lines hidden (view full) ---

389 DEBUG(Node->dump(CurDAG));
390 DEBUG(errs() << "\n");
391
392 // If we have a custom node, we already have selected!
393 if (Node->isMachineOpcode()) {
394 DEBUG(errs() << "== ";
395 Node->dump(CurDAG);
396 errs() << "\n");
397 Node->setNodeId(-1);
397 return NULL;
398 }
399
400 // Few custom selection stuff.
401 switch (Node->getOpcode()) {
402 default: break;
403 case ISD::FrameIndex: {
404 assert(Node->getValueType(0) == MVT::i16);

--- 88 unchanged lines hidden ---
398 return NULL;
399 }
400
401 // Few custom selection stuff.
402 switch (Node->getOpcode()) {
403 default: break;
404 case ISD::FrameIndex: {
405 assert(Node->getValueType(0) == MVT::i16);

--- 88 unchanged lines hidden ---