Deleted Added
full compact
MSP430ISelLowering.cpp (193323) MSP430ISelLowering.cpp (195340)
1//===-- MSP430ISelLowering.cpp - MSP430 DAG Lowering Implementation ------===//
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//===----------------------------------------------------------------------===//

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

122 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
123 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, DAG);
124 default:
125 assert(0 && "unimplemented operand");
126 return SDValue();
127 }
128}
129
1//===-- MSP430ISelLowering.cpp - MSP430 DAG Lowering Implementation ------===//
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//===----------------------------------------------------------------------===//

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

122 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
123 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, DAG);
124 default:
125 assert(0 && "unimplemented operand");
126 return SDValue();
127 }
128}
129
130/// getFunctionAlignment - Return the Log2 alignment of this function.
131unsigned MSP430TargetLowering::getFunctionAlignment(const Function *F) const {
132 return F->hasFnAttr(Attribute::OptimizeForSize) ? 1 : 4;
133}
134
130//===----------------------------------------------------------------------===//
131// Calling Convention Implementation
132//===----------------------------------------------------------------------===//
133
134#include "MSP430GenCallingConv.inc"
135
136SDValue MSP430TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op,
137 SelectionDAG &DAG) {

--- 533 unchanged lines hidden ---
135//===----------------------------------------------------------------------===//
136// Calling Convention Implementation
137//===----------------------------------------------------------------------===//
138
139#include "MSP430GenCallingConv.inc"
140
141SDValue MSP430TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op,
142 SelectionDAG &DAG) {

--- 533 unchanged lines hidden ---